結果

問題 No.429 CupShuffle
ユーザー 💕💖💞💕💖💞
提出日時 2017-01-28 19:49:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,304 KB
最終ジャッジ日時 2024-06-06 07:57:28
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,136 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 34 ms
11,008 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 34 ms
11,136 KB
testcase_07 AC 35 ms
11,008 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 34 ms
11,008 KB
testcase_10 AC 85 ms
15,488 KB
testcase_11 AC 633 ms
57,568 KB
testcase_12 AC 609 ms
57,236 KB
testcase_13 AC 617 ms
57,076 KB
testcase_14 AC 623 ms
58,304 KB
testcase_15 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, X = map(int, input().split() )
ops = [list(input().split()) for _ in range(K)]
result = list(map(lambda x:int(x)-1, input().split())  )
heads = list(map(lambda x:list(map(lambda x2:int(x2)-1,x)), ops[:X-1]))
tails = list(map(lambda x:list(map(lambda x2:int(x2)-1,x)), reversed(ops[X:])) )

def swapper(target:list, op:list) -> None:
    target[op[0]], target[op[1]] = target[op[1]], target[op[0]]

target = [i for i in range(N)]

[swapper(target, op) for op in heads]

[swapper(result, op) for op in tails]

print(' '.join(list(map(lambda x:str(x+1), filter(lambda x:x is not None, map(lambda x2:x2[2] if x2[0] != x2[1] else None, zip(target, result, range(N))))))))
0