結果

問題 No.2740 Old Maid
ユーザー suntonsunton
提出日時 2024-05-27 23:10:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,152 KB
最終ジャッジ日時 2024-05-27 23:10:22
合計ジャッジ時間 15,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
38,688 KB
testcase_01 AC 310 ms
38,576 KB
testcase_02 AC 291 ms
38,692 KB
testcase_03 AC 288 ms
38,672 KB
testcase_04 AC 316 ms
38,612 KB
testcase_05 AC 289 ms
38,680 KB
testcase_06 AC 304 ms
38,584 KB
testcase_07 AC 303 ms
38,688 KB
testcase_08 AC 321 ms
38,692 KB
testcase_09 AC 302 ms
38,688 KB
testcase_10 AC 289 ms
38,820 KB
testcase_11 AC 295 ms
38,804 KB
testcase_12 AC 241 ms
30,740 KB
testcase_13 AC 251 ms
32,528 KB
testcase_14 AC 69 ms
15,616 KB
testcase_15 AC 84 ms
17,048 KB
testcase_16 AC 186 ms
26,404 KB
testcase_17 AC 67 ms
15,340 KB
testcase_18 AC 278 ms
30,716 KB
testcase_19 AC 117 ms
19,108 KB
testcase_20 AC 284 ms
34,168 KB
testcase_21 AC 77 ms
15,868 KB
testcase_22 AC 178 ms
25,220 KB
testcase_23 AC 60 ms
13,920 KB
testcase_24 AC 104 ms
18,848 KB
testcase_25 AC 321 ms
36,544 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 47 ms
12,928 KB
testcase_28 AC 181 ms
26,240 KB
testcase_29 AC 175 ms
24,840 KB
testcase_30 AC 34 ms
11,520 KB
testcase_31 AC 332 ms
39,152 KB
testcase_32 AC 149 ms
20,640 KB
testcase_33 AC 301 ms
36,428 KB
testcase_34 AC 170 ms
25,016 KB
testcase_35 AC 105 ms
18,616 KB
testcase_36 AC 112 ms
19,188 KB
testcase_37 AC 145 ms
22,204 KB
testcase_38 AC 101 ms
18,036 KB
testcase_39 AC 78 ms
14,592 KB
testcase_40 AC 219 ms
28,224 KB
testcase_41 AC 277 ms
33,916 KB
testcase_42 AC 26 ms
10,880 KB
testcase_43 AC 25 ms
10,880 KB
testcase_44 AC 26 ms
10,752 KB
testcase_45 AC 26 ms
10,752 KB
testcase_46 AC 26 ms
10,624 KB
testcase_47 AC 27 ms
10,880 KB
testcase_48 AC 26 ms
10,880 KB
testcase_49 AC 28 ms
10,752 KB
testcase_50 AC 28 ms
10,752 KB
testcase_51 AC 27 ms
10,624 KB
testcase_52 AC 28 ms
10,752 KB
testcase_53 AC 28 ms
10,752 KB
testcase_54 AC 28 ms
10,752 KB
testcase_55 AC 27 ms
10,880 KB
testcase_56 AC 33 ms
10,880 KB
testcase_57 AC 26 ms
10,624 KB
testcase_58 AC 27 ms
10,880 KB
testcase_59 AC 25 ms
10,752 KB
testcase_60 AC 25 ms
10,624 KB
testcase_61 AC 27 ms
10,752 KB
testcase_62 AC 27 ms
10,752 KB
testcase_63 AC 27 ms
10,752 KB
testcase_64 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

pre = [-1] * (N + 1)
nex = [-1] * (N + 1)
for i in range(1, N - 1):
    pre[P[i]] = P[i - 1]
    nex[P[i]] = P[i + 1]
pre[P[-1]] = P[-2]
nex[P[0]] = P[1]

nil = 0
pre[P[0]] = nil
nex[P[-1]] = nil

res = []
for i in range(1, N + 1):
    if nex[i] == nil:
        continue
    res.extend([i, nex[i]])
    nex[pre[i]] = nex[nex[i]]
    pre[nex[nex[i]]] = pre[i]
    # 存在確認用
    nex[nex[i]] = nex[i] = nil

print(' '.join(map(str, res)))
0