結果

問題 No.1438 Broken Drawers
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-03-26 21:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 157,856 KB
最終ジャッジ日時 2024-05-06 14:47:39
合計ジャッジ時間 9,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 303 ms
157,856 KB
testcase_07 AC 327 ms
122,832 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 45 ms
58,496 KB
testcase_10 AC 45 ms
53,120 KB
testcase_11 AC 141 ms
78,208 KB
testcase_12 AC 250 ms
96,544 KB
testcase_13 AC 316 ms
104,412 KB
testcase_14 AC 211 ms
96,620 KB
testcase_15 AC 472 ms
112,468 KB
testcase_16 AC 440 ms
112,724 KB
testcase_17 AC 462 ms
117,480 KB
testcase_18 AC 469 ms
118,052 KB
testcase_19 AC 448 ms
117,364 KB
testcase_20 AC 453 ms
118,200 KB
testcase_21 AC 450 ms
117,636 KB
testcase_22 AC 465 ms
117,256 KB
testcase_23 AC 463 ms
117,420 KB
testcase_24 AC 458 ms
117,812 KB
testcase_25 AC 462 ms
117,796 KB
testcase_26 AC 447 ms
117,712 KB
testcase_27 AC 478 ms
116,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from sys import exit
class HeapDict:
    def __init__(self):
        self.h=[]
        self.d=dict()

    def insert(self,x):
        heapq.heappush(self.h,x)
        if x not in self.d:
            self.d[x]=1
        else:
            self.d[x]+=1

    def erase(self,x):
        if x not in self.d or self.d[x]==0:
            print(x,"is not in HeapDict")
            exit()
        else:
            self.d[x]-=1

        while len(self.h)!=0:
            if self.d[self.h[0]]==0:
                heapq.heappop(self.h)
            else:
                break

    def is_exist(self,x):
        if x in self.d and self.d[x]!=0:
            return True
        else:
            return False

    def get_min(self):
        return self.h[0]


n = int(input())
a = list(map(int,input().split()))

d = {}
hq = HeapDict()
for i,x in enumerate(a):
    d[x] = i
    hq.insert(x)

ans = 0
k = 0
while k < n:
    m = hq.get_min()
    k += 1
    ans += 1
    hq.erase(m)
    if 0 <= d[m]-1 and hq.is_exist(a[d[m]-1]):
        hq.erase(a[d[m]-1])
        k += 1
print(ans)
0