結果

問題 No.429 CupShuffle
ユーザー lloyzlloyz
提出日時 2022-12-27 00:11:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 95,960 KB
最終ジャッジ日時 2024-05-01 08:12:23
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
62,216 KB
testcase_01 AC 37 ms
52,348 KB
testcase_02 AC 37 ms
53,840 KB
testcase_03 AC 37 ms
52,528 KB
testcase_04 AC 49 ms
56,304 KB
testcase_05 AC 38 ms
52,220 KB
testcase_06 AC 54 ms
62,572 KB
testcase_07 AC 53 ms
62,300 KB
testcase_08 AC 37 ms
52,308 KB
testcase_09 AC 53 ms
62,544 KB
testcase_10 AC 79 ms
76,952 KB
testcase_11 AC 148 ms
95,960 KB
testcase_12 AC 145 ms
95,612 KB
testcase_13 AC 145 ms
95,960 KB
testcase_14 AC 142 ms
95,836 KB
testcase_15 AC 36 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, x = map(int, input().split())
P = []
for i in range(k):
    if i == x - 1:
        input()
        continue
    a, b = map(int, input().split())
    P.append((a - 1, b - 1))
T = list(map(int, input().split()))
F = list(range(1, n + 1))

for i in range(x - 1):
    a, b = P[i]
    F[a], F[b] = F[b], F[a]
for i in range(k - x):
    a, b = P[k - i - 2]
    T[a], T[b] = T[b], T[a]
ANS = [-1, -1]
for i in range(n):
    if F[i] != T[i]:
        if ANS[0] == -1:
            ANS[0] = i + 1
        else:
            ANS[1] = i + 1
            break
print(*ANS)
0