結果

問題 No.2002 Range Swap Query
ユーザー 👑 rin204rin204
提出日時 2022-09-19 01:53:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 136,024 KB
最終ジャッジ日時 2024-12-22 02:01:44
合計ジャッジ時間 8,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 116 ms
77,264 KB
testcase_09 AC 87 ms
76,544 KB
testcase_10 AC 49 ms
60,032 KB
testcase_11 AC 117 ms
77,420 KB
testcase_12 AC 693 ms
135,764 KB
testcase_13 AC 720 ms
136,024 KB
testcase_14 AC 691 ms
135,884 KB
testcase_15 AC 679 ms
134,100 KB
testcase_16 AC 417 ms
132,440 KB
testcase_17 AC 657 ms
135,892 KB
testcase_18 AC 334 ms
99,456 KB
testcase_19 AC 606 ms
128,128 KB
testcase_20 AC 234 ms
107,648 KB
testcase_21 AC 213 ms
100,992 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