結果

問題 No.429 CupShuffle
ユーザー nebukuro09nebukuro09
提出日時 2016-10-02 22:49:47
言語 Python2
(2.7.18)
結果
AC  
実行時間 516 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 31,628 KB
最終ジャッジ日時 2024-05-01 09:56:24
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,528 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 14 ms
6,272 KB
testcase_05 AC 11 ms
6,400 KB
testcase_06 AC 15 ms
6,400 KB
testcase_07 AC 15 ms
6,528 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 15 ms
6,400 KB
testcase_10 AC 56 ms
8,704 KB
testcase_11 AC 516 ms
31,492 KB
testcase_12 AC 464 ms
31,592 KB
testcase_13 AC 507 ms
31,628 KB
testcase_14 AC 511 ms
31,628 KB
testcase_15 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, X = map(int, raw_input().split())
swap = []
for _ in xrange(K):
    r = raw_input().split()
    if r[0] == ('?'):
        continue
    swap.append(map(lambda x:int(x)-1, r))
C = map(int, raw_input().split())

A = [i for i in xrange(1, N+1)]
for i in xrange(X-1):
    A[swap[i][0]], A[swap[i][1]] = A[swap[i][1]], A[swap[i][0]]

for i in xrange(K-2, X-2, -1):
    C[swap[i][0]], C[swap[i][1]] = C[swap[i][1]], C[swap[i][0]]


ans = []
for i in xrange(N):
    if A[i] != C[i]:
        ans.append(i)
print ans[0]+1, ans[1]+1
0