結果

問題 No.2740 Old Maid
ユーザー titiatitia
提出日時 2024-12-08 03:52:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,888 KB
最終ジャッジ日時 2024-12-08 03:53:00
合計ジャッジ時間 17,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
48,328 KB
testcase_01 AC 416 ms
48,328 KB
testcase_02 AC 432 ms
48,180 KB
testcase_03 AC 422 ms
48,344 KB
testcase_04 AC 440 ms
48,324 KB
testcase_05 AC 409 ms
48,212 KB
testcase_06 AC 409 ms
48,308 KB
testcase_07 AC 438 ms
48,436 KB
testcase_08 AC 414 ms
48,220 KB
testcase_09 AC 425 ms
48,344 KB
testcase_10 AC 414 ms
48,436 KB
testcase_11 AC 421 ms
48,440 KB
testcase_12 AC 411 ms
37,684 KB
testcase_13 AC 429 ms
39,728 KB
testcase_14 AC 95 ms
16,768 KB
testcase_15 AC 125 ms
19,100 KB
testcase_16 AC 305 ms
31,808 KB
testcase_17 AC 95 ms
16,472 KB
testcase_18 AC 418 ms
37,828 KB
testcase_19 AC 164 ms
22,084 KB
testcase_20 AC 508 ms
42,336 KB
testcase_21 AC 107 ms
17,692 KB
testcase_22 AC 289 ms
30,380 KB
testcase_23 AC 77 ms
15,228 KB
testcase_24 AC 165 ms
21,832 KB
testcase_25 AC 552 ms
44,972 KB
testcase_26 AC 33 ms
11,136 KB
testcase_27 AC 62 ms
13,568 KB
testcase_28 AC 298 ms
31,468 KB
testcase_29 AC 271 ms
29,864 KB
testcase_30 AC 38 ms
11,648 KB
testcase_31 AC 590 ms
48,888 KB
testcase_32 AC 188 ms
24,000 KB
testcase_33 AC 539 ms
46,472 KB
testcase_34 AC 305 ms
29,912 KB
testcase_35 AC 164 ms
21,596 KB
testcase_36 AC 181 ms
22,036 KB
testcase_37 AC 249 ms
26,584 KB
testcase_38 AC 141 ms
20,368 KB
testcase_39 AC 82 ms
15,992 KB
testcase_40 AC 384 ms
34,336 KB
testcase_41 AC 466 ms
41,884 KB
testcase_42 AC 27 ms
10,752 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 26 ms
10,624 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 29 ms
10,624 KB
testcase_49 AC 29 ms
10,624 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 28 ms
10,624 KB
testcase_52 AC 29 ms
10,496 KB
testcase_53 AC 29 ms
10,624 KB
testcase_54 AC 29 ms
10,624 KB
testcase_55 AC 28 ms
10,752 KB
testcase_56 AC 28 ms
10,752 KB
testcase_57 AC 28 ms
10,624 KB
testcase_58 AC 28 ms
10,496 KB
testcase_59 AC 27 ms
10,496 KB
testcase_60 AC 27 ms
10,624 KB
testcase_61 AC 27 ms
10,624 KB
testcase_62 AC 27 ms
10,496 KB
testcase_63 AC 28 ms
10,752 KB
testcase_64 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=list(map(int,input().split()))
P_INV=[-1]*(N+1)

for i in range(N):
    P_INV[P[i]]=i

LEFT=[i-1 for i in range(N)]
RIGHT=[i+1 for i in range(N)]

def use(i):
    if 0<=LEFT[i]<N:
        RIGHT[LEFT[i]]=RIGHT[i]
    if 0<=RIGHT[i]<N:
        LEFT[RIGHT[i]]=LEFT[i]

USE=[0]*N

ANS=[]


for i in range(1,N+1):

    if USE[P_INV[i]]==1:
        continue
    if RIGHT[P_INV[i]]==N:
        continue

    ANS.append(i)
    USE[P_INV[i]]=1
    x=RIGHT[P_INV[i]]
    ANS.append(P[x])
    
    use(P_INV[i])
    use(x)
    
    USE[P_INV[i]]=1
    USE[x]=1
        
print(*ANS)
    

0