結果

問題 No.1438 Broken Drawers
ユーザー ygd.ygd.
提出日時 2021-03-26 21:29:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 117,852 KB
最終ジャッジ日時 2024-11-28 21:31:45
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,900 KB
testcase_01 AC 43 ms
54,096 KB
testcase_02 AC 43 ms
54,576 KB
testcase_03 AC 43 ms
54,492 KB
testcase_04 AC 42 ms
55,248 KB
testcase_05 AC 42 ms
54,524 KB
testcase_06 AC 129 ms
113,184 KB
testcase_07 AC 129 ms
113,204 KB
testcase_08 AC 43 ms
54,252 KB
testcase_09 AC 42 ms
55,372 KB
testcase_10 AC 42 ms
54,372 KB
testcase_11 AC 56 ms
67,628 KB
testcase_12 AC 103 ms
96,540 KB
testcase_13 AC 145 ms
117,852 KB
testcase_14 AC 84 ms
86,408 KB
testcase_15 AC 194 ms
108,432 KB
testcase_16 AC 195 ms
112,108 KB
testcase_17 AC 201 ms
113,588 KB
testcase_18 AC 205 ms
113,916 KB
testcase_19 AC 209 ms
114,312 KB
testcase_20 AC 204 ms
113,976 KB
testcase_21 AC 197 ms
113,848 KB
testcase_22 AC 207 ms
114,236 KB
testcase_23 AC 208 ms
114,092 KB
testcase_24 AC 204 ms
114,008 KB
testcase_25 AC 207 ms
114,280 KB
testcase_26 AC 210 ms
114,328 KB
testcase_27 AC 207 ms
114,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
A = list(map(int,input().split()))
A = [a-1 for a in A]
dic = defaultdict(int)
for i,x in enumerate(A):
    dic[x] = i
B = sorted(A)
used = [0]*N
ans = 0
for i, x in enumerate(B):
    if used[x] == 1: continue
    ans += 1
    used[x] = 1
    shita = dic[x] - 1
    #print(A[shita])
    if shita >= 0 and used[A[shita]] == 0:
        used[A[shita]] = 1
print(ans)
0