結果

問題 No.429 CupShuffle
ユーザー matsu7874matsu7874
提出日時 2016-10-02 22:35:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,280 KB
最終ジャッジ日時 2024-05-01 09:48:34
合計ジャッジ時間 2,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 24 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 66 ms
12,928 KB
testcase_11 AC 449 ms
34,188 KB
testcase_12 AC 415 ms
34,280 KB
testcase_13 AC 439 ms
34,088 KB
testcase_14 AC 469 ms
34,196 KB
testcase_15 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,x = map(int, input().split())
p = [[],[]]
t = 0
for i in range(k):
    if i+1 != x:
        a,b = map(int, input().split())
        p[t].append((a-1,b-1)) 
    else:
        _ = input()
        t = 1
c = list(map(int, input().split()))
a = [i+1 for i in range(n)]
for x,y in p[0]:
    a[x],a[y] = a[y],a[x]

for x,y in p[1][::-1]:
    c[x],c[y] = c[y],c[x]
ans = []
for i in range(n):
    if a[i] != c[i]:
        ans.append(i+1)
print(ans[0], ans[1])
0