結果

問題 No.2740 Old Maid
ユーザー lloyzlloyz
提出日時 2024-05-07 22:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 165,844 KB
最終ジャッジ日時 2024-11-30 19:56:12
合計ジャッジ時間 14,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
165,520 KB
testcase_01 AC 199 ms
165,644 KB
testcase_02 AC 204 ms
165,844 KB
testcase_03 AC 210 ms
165,452 KB
testcase_04 AC 204 ms
165,620 KB
testcase_05 AC 205 ms
165,824 KB
testcase_06 AC 195 ms
165,636 KB
testcase_07 AC 197 ms
165,636 KB
testcase_08 AC 197 ms
165,636 KB
testcase_09 AC 205 ms
165,668 KB
testcase_10 AC 200 ms
165,600 KB
testcase_11 AC 193 ms
165,636 KB
testcase_12 AC 198 ms
120,648 KB
testcase_13 AC 212 ms
125,248 KB
testcase_14 AC 86 ms
90,408 KB
testcase_15 AC 94 ms
96,972 KB
testcase_16 AC 165 ms
124,840 KB
testcase_17 AC 88 ms
87,104 KB
testcase_18 AC 203 ms
121,572 KB
testcase_19 AC 118 ms
103,612 KB
testcase_20 AC 227 ms
139,536 KB
testcase_21 AC 95 ms
92,340 KB
testcase_22 AC 172 ms
126,992 KB
testcase_23 AC 85 ms
84,368 KB
testcase_24 AC 117 ms
104,488 KB
testcase_25 AC 235 ms
147,992 KB
testcase_26 AC 56 ms
68,420 KB
testcase_27 AC 75 ms
80,552 KB
testcase_28 AC 168 ms
125,212 KB
testcase_29 AC 155 ms
121,404 KB
testcase_30 AC 63 ms
74,008 KB
testcase_31 AC 261 ms
164,656 KB
testcase_32 AC 124 ms
107,120 KB
testcase_33 AC 234 ms
152,008 KB
testcase_34 AC 155 ms
121,496 KB
testcase_35 AC 108 ms
102,520 KB
testcase_36 AC 120 ms
105,580 KB
testcase_37 AC 145 ms
116,176 KB
testcase_38 AC 110 ms
101,648 KB
testcase_39 AC 84 ms
87,072 KB
testcase_40 AC 188 ms
115,640 KB
testcase_41 AC 225 ms
139,312 KB
testcase_42 AC 39 ms
53,896 KB
testcase_43 AC 39 ms
55,572 KB
testcase_44 AC 38 ms
53,848 KB
testcase_45 AC 38 ms
54,800 KB
testcase_46 AC 40 ms
53,808 KB
testcase_47 AC 39 ms
54,424 KB
testcase_48 AC 39 ms
54,444 KB
testcase_49 AC 37 ms
54,192 KB
testcase_50 AC 38 ms
54,296 KB
testcase_51 AC 37 ms
55,512 KB
testcase_52 AC 37 ms
54,556 KB
testcase_53 AC 38 ms
53,980 KB
testcase_54 AC 38 ms
54,916 KB
testcase_55 AC 41 ms
54,480 KB
testcase_56 AC 41 ms
53,964 KB
testcase_57 AC 40 ms
54,600 KB
testcase_58 AC 40 ms
54,916 KB
testcase_59 AC 39 ms
54,124 KB
testcase_60 AC 38 ms
55,044 KB
testcase_61 AC 39 ms
54,400 KB
testcase_62 AC 40 ms
54,012 KB
testcase_63 AC 40 ms
53,768 KB
testcase_64 AC 38 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
P = list(map(int, input().split()))

G = defaultdict(int)
RG = defaultdict(int)
for i in range(n - 1):
    G[P[i]] = P[i + 1]
G[P[n - 1]] = None
for i in range(n - 1, 0, -1):
    RG[P[i]] = P[i - 1]
RG[P[0]] = None
ANS = []
for i in range(1, n + 1):
    nex = G[i]
    if nex is None:
        continue
    ANS.append(i)
    ANS.append(nex)
    new_nex = G[nex]
    G[i] = None
    G[nex] = None
    pre = RG[i]
    if pre is not None:
        G[pre] = new_nex
    if new_nex is not None:
        RG[new_nex] = pre
print(*ANS)
0