結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 72 ms
13,696 KB
testcase_11 AC 451 ms
40,484 KB
testcase_12 AC 428 ms
40,320 KB
testcase_13 AC 441 ms
40,512 KB
testcase_14 AC 433 ms
40,420 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