結果

問題 No.2002 Range Swap Query
ユーザー 👑 rin204rin204
提出日時 2022-09-19 01:53:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 136,336 KB
最終ジャッジ日時 2024-06-01 15:58:07
合計ジャッジ時間 9,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 38 ms
53,164 KB
testcase_03 AC 39 ms
54,152 KB
testcase_04 AC 38 ms
52,956 KB
testcase_05 AC 39 ms
53,244 KB
testcase_06 AC 40 ms
53,124 KB
testcase_07 AC 39 ms
52,768 KB
testcase_08 AC 112 ms
77,584 KB
testcase_09 AC 85 ms
76,616 KB
testcase_10 AC 48 ms
61,348 KB
testcase_11 AC 110 ms
77,648 KB
testcase_12 AC 710 ms
135,964 KB
testcase_13 AC 708 ms
136,336 KB
testcase_14 AC 703 ms
136,016 KB
testcase_15 AC 692 ms
134,228 KB
testcase_16 AC 427 ms
132,608 KB
testcase_17 AC 649 ms
136,012 KB
testcase_18 AC 327 ms
99,712 KB
testcase_19 AC 606 ms
128,388 KB
testcase_20 AC 229 ms
107,944 KB
testcase_21 AC 217 ms
101,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, Q_ = map(int, input().split())
ab = []
P = list(range(n))
for _ in range(k):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    ab.append((a, b))
    P[a], P[b] = P[b], P[a]

X = [0] * Q_
L = [[] for _ in range(k)]
R = [[] for _ in range(k)]
for i in range(Q_):
    l, r, x = map(int, input().split())
    l -= 1
    r -= 1
    x -= 1
    X[i] = x
    L[l].append(i)
    R[r].append(i)

Q = [0] * n
for i, p in enumerate(P):
    Q[p] = i

ans = [0] * Q_
for i in range(k - 1, -1, -1):
    for j in R[i]:
        x = X[j]
        X[j] = P[x]

    a, b = ab[i]
    P[a], P[b] = P[b], P[a]
    a = P[a]
    b = P[b]
    Q[a], Q[b] = Q[b], Q[a]

    for j in L[i]:
        x = X[j]
        ans[j] = Q[x] + 1

print(*ans, sep="\n")
0