結果

問題 No.429 CupShuffle
ユーザー nanaenanae
提出日時 2017-02-02 18:05:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 38,176 KB
最終ジャッジ日時 2024-06-06 12:18:22
合計ジャッジ時間 2,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 32 ms
11,008 KB
testcase_10 AC 65 ms
13,440 KB
testcase_11 AC 426 ms
38,176 KB
testcase_12 AC 382 ms
38,012 KB
testcase_13 AC 404 ms
38,064 KB
testcase_14 AC 402 ms
38,172 KB
testcase_15 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import log

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def solve():
    N, K, X = map(int, input().split())
    start = list(range(1, N + 1))
    zenhan = []
    kouhan = []

    for i in range(X - 1):
        A, B = map(int, input().split())
        zenhan.append((A, B))

    input()

    for i in range(K - X):
        A, B = map(int, input().split())
        kouhan.append((A, B))

    kouhan.reverse()

    end = [int(i) for i in input().split()]

    for i in range(X - 1):
        A, B = zenhan[i]
        start[A - 1], start[B - 1] = start[B - 1], start[A - 1]

    for i in range(K - X):
        A, B = kouhan[i]
        end[A - 1], end[B - 1] = end[B - 1], end[A - 1]

    # debug(start, locals())
    # debug(end, locals())

    ans = []

    for i in range(N):
        if start[i] != end[i]:
            ans.append(i + 1)
            
    print(*ans)

    pass

if __name__ == '__main__':
    solve()
0