QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#871272#8618. Have You Seen This Subarray?ucup-team296#WA 173ms52060kbKotlin1.6kb2025-01-25 20:07:222025-01-25 20:07:24

Judging History

你现在查看的是最新测评结果

  • [2025-01-25 20:07:24]
  • 评测
  • 测评结果:WA
  • 用时:173ms
  • 内存:52060kb
  • [2025-01-25 20:07:22]
  • 提交

answer

import java.util.*
import kotlin.collections.ArrayList
import kotlin.collections.HashMap

/*
6 3 5
1 5
3 4
1 6
2 4 1
3 3 1 5
3 3 4 5
4 5 2 4 3
2 6 2
 */
fun main() {
    val (n, m, q) = readln().split(" ").map { it.toInt() }
    val sw = List(m) { readln().split(" ").map { it.toInt() - 1 } }
    val qs = List(q) { readln().split(" ").map { it.toInt() }.drop(1) }
    val ans = IntArray(q) { -1 }
    data class P(val a: Int, val b: Int)
    val ps = HashMap<P, LinkedList<Int>>()
    for (i in 0..<q) {
        val b = qs[i]
        val k = b.size
        if (k == 1) ans[i] = 0
        for (j in 0..<k - 1) {
            val p = P(b[j], b[j + 1])
            ps.getOrPut(p) { LinkedList<Int>() }.add(i)
        }
    }
    val c = IntArray(q)
    var done = 0
    fun count(a: Int, b: Int, d: Int) {
        val p = P(a, b)
        val pl = ps[p]
        if (pl != null) {
            val it = pl.iterator()
            while (it.hasNext()) {
                val i = it.next()
                c[i] += d
                if (c[i] == qs[i].size - 1) {
                    ans[i] = done
                    it.remove()
                }
            }
        }
    }
    val a = IntArray(n) { it + 1 }
    for (i in 1..n - 1) {
        count(i, i + 1, 1)
    }
    fun update(i: Int, d: Int) {
        if (i > 0) count(a[i - 1], a[i], d)
        if (i < n - 1) count(a[i], a[i + 1], d)
    }
    for ((i, j) in sw) {
        done++
        update(i, -1)
        update(j, -1)
        a[i] = a[j].also { a[j] = a[i] }
        update(i, 1)
        update(j, 1)
    }
    println(ans.joinToString("\n"))
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 108ms
memory: 50324kb

input:

6 3 5
1 5
3 4
1 6
2 4 1
3 3 1 5
3 3 4 5
4 5 2 4 3
2 6 2

output:

1
3
0
2
3

result:

ok 5 number(s): "1 3 0 2 3"

Test #2:

score: 0
Accepted
time: 116ms
memory: 50272kb

input:

50 50 16
21 30
14 39
5 32
31 48
38 50
40 49
14 33
32 42
7 15
5 25
24 28
8 10
18 24
5 39
4 37
9 28
29 39
2 35
11 32
48 49
12 17
38 44
26 33
12 40
19 49
40 41
17 18
20 30
11 15
21 36
37 38
7 48
17 21
8 38
30 34
3 31
7 12
31 47
2 37
20 41
13 40
33 39
10 49
19 40
12 30
23 28
9 45
27 32
4 37
27 29
2 44 4...

output:

0
29
44
22
23
18
1
37
3
16
0
16
0
13
0
0

result:

ok 16 numbers

Test #3:

score: -100
Wrong Answer
time: 173ms
memory: 52060kb

input:

500 500 165
5 424
246 385
355 428
43 338
214 378
286 469
6 467
149 333
203 411
7 111
395 483
256 288
69 414
33 429
159 425
22 470
13 425
235 292
291 412
76 224
64 207
198 365
268 314
116 366
338 386
58 265
328 330
146 493
89 288
120 465
187 201
336 499
406 485
195 406
56 485
410 424
125 149
154 216
...

output:

68
77
385
0
391
119
0
443
216
0
0
420
0
136
434
0
163
77
410
122
0
0
436
474
285
0
109
89
13
0
38
0
0
133
48
390
0
0
157
25
402
0
232
272
0
0
374
294
226
0
16
0
151
295
80
17
184
379
333
199
431
0
0
0
10
0
0
0
357
431
165
0
0
408
296
0
0
0
191
0
275
233
184
284
0
107
0
213
193
317
0
0
349
311
82
0
1...

result:

wrong answer 119th numbers differ - expected: '106', found: '280'