結果

問題 No.2740 Old Maid
ユーザー lloyzlloyz
提出日時 2024-05-07 22:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 166,456 KB
最終ジャッジ日時 2024-05-07 22:58:06
合計ジャッジ時間 15,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
165,664 KB
testcase_01 AC 208 ms
165,832 KB
testcase_02 AC 210 ms
165,720 KB
testcase_03 AC 208 ms
165,768 KB
testcase_04 AC 208 ms
165,840 KB
testcase_05 AC 214 ms
166,456 KB
testcase_06 AC 211 ms
165,576 KB
testcase_07 AC 210 ms
165,576 KB
testcase_08 AC 208 ms
165,628 KB
testcase_09 AC 209 ms
165,728 KB
testcase_10 AC 206 ms
166,060 KB
testcase_11 AC 199 ms
165,700 KB
testcase_12 AC 218 ms
120,720 KB
testcase_13 AC 227 ms
125,328 KB
testcase_14 AC 91 ms
90,688 KB
testcase_15 AC 101 ms
96,980 KB
testcase_16 AC 176 ms
125,568 KB
testcase_17 AC 93 ms
87,296 KB
testcase_18 AC 216 ms
121,232 KB
testcase_19 AC 136 ms
103,784 KB
testcase_20 AC 246 ms
139,924 KB
testcase_21 AC 99 ms
92,400 KB
testcase_22 AC 181 ms
127,360 KB
testcase_23 AC 89 ms
84,120 KB
testcase_24 AC 124 ms
104,576 KB
testcase_25 AC 259 ms
148,224 KB
testcase_26 AC 66 ms
67,584 KB
testcase_27 AC 80 ms
81,064 KB
testcase_28 AC 183 ms
125,184 KB
testcase_29 AC 160 ms
121,600 KB
testcase_30 AC 65 ms
72,832 KB
testcase_31 AC 282 ms
164,708 KB
testcase_32 AC 132 ms
107,264 KB
testcase_33 AC 280 ms
152,280 KB
testcase_34 AC 172 ms
121,472 KB
testcase_35 AC 120 ms
102,472 KB
testcase_36 AC 121 ms
105,672 KB
testcase_37 AC 152 ms
116,140 KB
testcase_38 AC 116 ms
101,448 KB
testcase_39 AC 93 ms
86,912 KB
testcase_40 AC 215 ms
115,744 KB
testcase_41 AC 249 ms
139,124 KB
testcase_42 AC 39 ms
54,144 KB
testcase_43 AC 40 ms
53,780 KB
testcase_44 AC 40 ms
53,888 KB
testcase_45 AC 40 ms
53,888 KB
testcase_46 AC 40 ms
54,016 KB
testcase_47 AC 39 ms
53,632 KB
testcase_48 AC 40 ms
54,144 KB
testcase_49 AC 40 ms
54,272 KB
testcase_50 AC 39 ms
54,144 KB
testcase_51 AC 41 ms
53,632 KB
testcase_52 AC 40 ms
53,888 KB
testcase_53 AC 41 ms
54,144 KB
testcase_54 AC 40 ms
53,632 KB
testcase_55 AC 40 ms
53,888 KB
testcase_56 AC 40 ms
53,888 KB
testcase_57 AC 40 ms
53,668 KB
testcase_58 AC 40 ms
54,016 KB
testcase_59 AC 39 ms
53,504 KB
testcase_60 AC 40 ms
53,760 KB
testcase_61 AC 40 ms
53,504 KB
testcase_62 AC 41 ms
53,376 KB
testcase_63 AC 40 ms
54,144 KB
testcase_64 AC 40 ms
53,760 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