結果

問題 No.2740 Old Maid
ユーザー titiatitia
提出日時 2024-12-08 03:49:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 538 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,880 KB
最終ジャッジ日時 2024-12-08 03:50:16
合計ジャッジ時間 15,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 420 ms
48,308 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 AC 190 ms
21,552 KB
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 RE -
testcase_31 WA -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 WA -
testcase_36 WA -
testcase_37 RE -
testcase_38 AC 143 ms
20,616 KB
testcase_39 RE -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 28 ms
10,752 KB
testcase_43 RE -
testcase_44 WA -
testcase_45 WA -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 28 ms
10,752 KB
testcase_50 WA -
testcase_51 AC 29 ms
10,624 KB
testcase_52 RE -
testcase_53 WA -
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 28 ms
10,752 KB
testcase_57 WA -
testcase_58 RE -
testcase_59 RE -
testcase_60 AC 28 ms
10,624 KB
testcase_61 RE -
testcase_62 AC 28 ms
10,624 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):
    RIGHT[LEFT[i]]=RIGHT[i]
    LEFT[RIGHT[i]]=LEFT[i]

USE=[0]*N

ANS=[]


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

    if USE[P_INV[i]]==1:
        continue
    if P_INV[i]==N-1:
        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