結果

問題 No.429 CupShuffle
ユーザー noriocnorioc
提出日時 2016-10-02 23:40:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,208 KB
最終ジャッジ日時 2024-11-21 14:52:46
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 66 ms
12,800 KB
testcase_11 AC 417 ms
38,236 KB
testcase_12 AC 401 ms
35,316 KB
testcase_13 AC 433 ms
42,208 KB
testcase_14 AC 401 ms
24,680 KB
testcase_15 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def readints():
    return list(map(int, input().split()))

def main():
    n, k, x = readints()

    xs = list(range(n))
    for i in range(x-1):
        a, b = readints()
        xs[a-1], xs[b-1] = xs[b-1], xs[a-1]

    input() # read X
    swaps = []
    for i in range(k - x):
        swaps.append(readints())

    ys = [i-1 for i in readints()]
    for a, b in reversed(swaps):
        ys[a-1], ys[b-1] = ys[b-1], ys[a-1]

    ans = []
    for i in range(len(xs)):
        if xs[i] != ys[i]:
            ans.append(i + 1)

    ans.sort()
    print(ans[0], ans[1])

main()
0