結果

問題 No.326 あみだますたー
ユーザー 👑 rin204rin204
提出日時 2022-07-09 16:09:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-06-09 22:48:13
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 MLE -
testcase_04 WA -
testcase_05 AC 35 ms
52,224 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 WA -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 WA -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 WA -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 WA -
testcase_21 WA -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 WA -
testcase_27 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
k = int(input())
P = [i for i in range(n)]
for _ in range(k):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    P[x], P[y] = P[y], P[x]
A = list(map(int, input().split()))
A = [a - 1 for a in A]
invA = [-1] * n
for i, a in enumerate(A):
    invA[a] = i
ans = []
for i, a in enumerate(A):
    while P[i] != a:
        p = invA[P[i]]
        ans.append((i + 1, p + 1))
        P[i], P[p] = P[p], P[i]
print(len(ans))
for row in ans:
    print(*row)
0