結果

問題 No.429 CupShuffle
ユーザー bauer24bauer24
提出日時 2017-02-28 15:02:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 39,392 KB
最終ジャッジ日時 2024-06-11 22:57:16
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 65 ms
12,800 KB
testcase_11 AC 471 ms
36,000 KB
testcase_12 AC 435 ms
33,524 KB
testcase_13 AC 485 ms
39,392 KB
testcase_14 AC 407 ms
24,852 KB
testcase_15 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,X = [int(i) for i in input().split()]
cups = []
for i in range(N):
    cups.append(i+1)

for i in range(X-1):
    s1,s2 = [int(i) for i in input().split()]
    cups[s1-1],cups[s2-1] = cups[s2-1],cups[s1-1]

s1,s2 = [str(i) for i in input().split()]
box = []
for i in range(K-X):
    s = [int(i) for i in input().split()]
    box.append(s)
last = [int(i) for i in input().split()]
for i in range(K-X):
    s1,s2 = box[K-X-1-i][0],box[K-X-1-i][1]
    last[s1-1],last[s2-1] = last[s2-1],last[s1-1]
ans = []
for i in range(N):
    if cups[i] != last[i]:
        ans.append(i+1)
print(*ans)
0