結果

問題 No.2740 Old Maid
ユーザー detteiuudetteiuu
提出日時 2024-04-24 22:05:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 148,596 KB
最終ジャッジ日時 2024-11-07 07:17:06
合計ジャッジ時間 21,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
148,388 KB
testcase_01 AC 390 ms
148,516 KB
testcase_02 AC 388 ms
148,392 KB
testcase_03 AC 398 ms
148,388 KB
testcase_04 AC 398 ms
148,384 KB
testcase_05 AC 402 ms
148,392 KB
testcase_06 AC 392 ms
148,256 KB
testcase_07 AC 395 ms
148,596 KB
testcase_08 AC 393 ms
148,380 KB
testcase_09 AC 396 ms
148,508 KB
testcase_10 AC 388 ms
148,508 KB
testcase_11 AC 359 ms
148,356 KB
testcase_12 AC 411 ms
124,288 KB
testcase_13 AC 441 ms
121,344 KB
testcase_14 AC 175 ms
88,064 KB
testcase_15 AC 200 ms
94,720 KB
testcase_16 AC 337 ms
128,256 KB
testcase_17 AC 170 ms
86,504 KB
testcase_18 AC 414 ms
124,288 KB
testcase_19 AC 231 ms
103,808 KB
testcase_20 AC 474 ms
127,268 KB
testcase_21 AC 180 ms
90,624 KB
testcase_22 AC 335 ms
128,000 KB
testcase_23 AC 158 ms
83,712 KB
testcase_24 AC 229 ms
103,808 KB
testcase_25 AC 500 ms
136,684 KB
testcase_26 AC 101 ms
76,516 KB
testcase_27 AC 157 ms
80,768 KB
testcase_28 AC 334 ms
128,000 KB
testcase_29 AC 322 ms
122,624 KB
testcase_30 AC 124 ms
78,196 KB
testcase_31 AC 562 ms
148,288 KB
testcase_32 AC 247 ms
107,648 KB
testcase_33 AC 525 ms
140,588 KB
testcase_34 AC 324 ms
122,240 KB
testcase_35 AC 223 ms
100,608 KB
testcase_36 AC 232 ms
103,680 KB
testcase_37 AC 286 ms
116,608 KB
testcase_38 AC 212 ms
100,352 KB
testcase_39 AC 167 ms
86,268 KB
testcase_40 AC 378 ms
129,280 KB
testcase_41 AC 472 ms
127,248 KB
testcase_42 AC 43 ms
52,096 KB
testcase_43 AC 44 ms
52,736 KB
testcase_44 AC 43 ms
52,864 KB
testcase_45 AC 44 ms
52,480 KB
testcase_46 AC 45 ms
52,352 KB
testcase_47 AC 44 ms
52,352 KB
testcase_48 AC 43 ms
52,736 KB
testcase_49 AC 44 ms
52,608 KB
testcase_50 AC 44 ms
52,864 KB
testcase_51 AC 44 ms
52,864 KB
testcase_52 AC 43 ms
52,608 KB
testcase_53 AC 45 ms
53,120 KB
testcase_54 AC 44 ms
52,480 KB
testcase_55 AC 44 ms
52,608 KB
testcase_56 AC 43 ms
52,480 KB
testcase_57 AC 44 ms
52,352 KB
testcase_58 AC 44 ms
52,736 KB
testcase_59 AC 44 ms
52,352 KB
testcase_60 AC 43 ms
52,608 KB
testcase_61 AC 43 ms
52,608 KB
testcase_62 AC 44 ms
52,736 KB
testcase_63 AC 43 ms
52,480 KB
testcase_64 AC 44 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify

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

pre = dict()
nex = dict()
for i in range(N):
    if i == 0:
        pre[P[i]] = -1
    else:
        pre[P[i]] = P[i-1]
    if i == N-1:
        nex[P[i]] = -1
    else:
        nex[P[i]] = P[i+1]

que = P[:N-1]
heapify(que)
ans = []
S = set()
while que:
    n = heappop(que)
    if n in S:
        continue
    ans.append(n)
    ans.append(nex[n])
    S.add(n)
    S.add(nex[n])
    if nex[nex[n]] == -1:
        if pre[n] != -1:
            S.add(pre[n])
        nex[pre[n]] = -1
    else:
        nex[pre[n]] = nex[nex[n]]
        pre[nex[nex[n]]] = pre[n]
    pre.pop(n)
    pre.pop(nex[n])
    ne = nex[n]
    nex.pop(n)
    nex.pop(ne)

print(*ans)
0