結果

問題 No.429 CupShuffle
ユーザー rpy3cpprpy3cpp
提出日時 2016-10-05 00:50:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,508 KB
最終ジャッジ日時 2024-05-01 12:38:25
合計ジャッジ時間 3,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 63 ms
13,568 KB
testcase_11 AC 409 ms
40,360 KB
testcase_12 AC 402 ms
40,200 KB
testcase_13 AC 408 ms
40,508 KB
testcase_14 AC 414 ms
40,292 KB
testcase_15 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N, K, X = map(int, input().split())
    ABs = []
    CDs = []
    for i in range(1, K + 1):
        if i < X:
            ABs.append(list(map(int, input().split())))
        elif i > X:
            CDs.append(list(map(int, input().split())))
        else:
            input()
    Cs = list(map(int, input().split()))
    return N, K, X, ABs, CDs, Cs

def solve(N, K, X, ABs, CDs, Cs):
    As = list(range(1, N + 1))
    for A, B in ABs:
        A -= 1
        B -= 1
        As[A], As[B] = As[B], As[A]
    CDs.reverse()
    for A, B in CDs:
        A -= 1
        B -= 1
        Cs[A], Cs[B] = Cs[B], Cs[A]
    pos = []
    p = 0
    for a, c in zip(As, Cs):
        p += 1
        if a != c:
            pos.append(p)
    return pos

params = read_data()
print(*solve(*params))
0