結果

問題 No.1438 Broken Drawers
ユーザー ygd.ygd.
提出日時 2021-03-26 21:29:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-05-06 14:19:39
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 42 ms
53,248 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 130 ms
113,184 KB
testcase_07 AC 134 ms
112,772 KB
testcase_08 AC 43 ms
53,120 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 57 ms
66,560 KB
testcase_12 AC 100 ms
95,488 KB
testcase_13 AC 137 ms
117,632 KB
testcase_14 AC 85 ms
86,016 KB
testcase_15 AC 180 ms
108,160 KB
testcase_16 AC 178 ms
111,744 KB
testcase_17 AC 200 ms
113,332 KB
testcase_18 AC 193 ms
113,744 KB
testcase_19 AC 197 ms
114,168 KB
testcase_20 AC 199 ms
114,028 KB
testcase_21 AC 194 ms
113,524 KB
testcase_22 AC 204 ms
113,996 KB
testcase_23 AC 195 ms
113,828 KB
testcase_24 AC 197 ms
114,060 KB
testcase_25 AC 198 ms
114,168 KB
testcase_26 AC 208 ms
114,044 KB
testcase_27 AC 194 ms
114,212 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