結果
問題 | No.1705 Mode of long array |
ユーザー | Kazun |
提出日時 | 2021-10-08 22:27:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 651 ms / 3,000 ms |
コード長 | 3,259 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 183,532 KB |
最終ジャッジ日時 | 2024-07-23 05:06:57 |
合計ジャッジ時間 | 21,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
54,980 KB |
testcase_01 | AC | 42 ms
55,776 KB |
testcase_02 | AC | 43 ms
55,552 KB |
testcase_03 | AC | 94 ms
77,148 KB |
testcase_04 | AC | 83 ms
76,812 KB |
testcase_05 | AC | 95 ms
77,292 KB |
testcase_06 | AC | 136 ms
78,920 KB |
testcase_07 | AC | 150 ms
78,148 KB |
testcase_08 | AC | 160 ms
78,252 KB |
testcase_09 | AC | 145 ms
78,524 KB |
testcase_10 | AC | 142 ms
78,268 KB |
testcase_11 | AC | 142 ms
78,240 KB |
testcase_12 | AC | 141 ms
77,944 KB |
testcase_13 | AC | 512 ms
168,580 KB |
testcase_14 | AC | 402 ms
141,536 KB |
testcase_15 | AC | 363 ms
120,524 KB |
testcase_16 | AC | 428 ms
132,004 KB |
testcase_17 | AC | 336 ms
115,536 KB |
testcase_18 | AC | 303 ms
109,220 KB |
testcase_19 | AC | 478 ms
144,764 KB |
testcase_20 | AC | 339 ms
122,020 KB |
testcase_21 | AC | 436 ms
150,016 KB |
testcase_22 | AC | 606 ms
183,532 KB |
testcase_23 | AC | 304 ms
82,724 KB |
testcase_24 | AC | 314 ms
82,576 KB |
testcase_25 | AC | 307 ms
83,056 KB |
testcase_26 | AC | 303 ms
82,944 KB |
testcase_27 | AC | 339 ms
83,592 KB |
testcase_28 | AC | 322 ms
83,368 KB |
testcase_29 | AC | 293 ms
83,040 KB |
testcase_30 | AC | 297 ms
82,108 KB |
testcase_31 | AC | 319 ms
82,888 KB |
testcase_32 | AC | 314 ms
83,112 KB |
testcase_33 | AC | 612 ms
157,624 KB |
testcase_34 | AC | 617 ms
157,300 KB |
testcase_35 | AC | 651 ms
157,248 KB |
testcase_36 | AC | 628 ms
157,096 KB |
testcase_37 | AC | 631 ms
160,956 KB |
testcase_38 | AC | 625 ms
162,492 KB |
testcase_39 | AC | 626 ms
156,736 KB |
testcase_40 | AC | 621 ms
161,828 KB |
testcase_41 | AC | 602 ms
157,112 KB |
testcase_42 | AC | 610 ms
157,380 KB |
testcase_43 | AC | 171 ms
98,416 KB |
testcase_44 | AC | 176 ms
98,540 KB |
testcase_45 | AC | 173 ms
98,292 KB |
testcase_46 | AC | 174 ms
98,228 KB |
testcase_47 | AC | 182 ms
98,804 KB |
testcase_48 | AC | 182 ms
98,676 KB |
testcase_49 | AC | 488 ms
124,796 KB |
testcase_50 | AC | 490 ms
123,392 KB |
testcase_51 | AC | 506 ms
124,888 KB |
testcase_52 | AC | 485 ms
123,892 KB |
testcase_53 | AC | 494 ms
123,996 KB |
ソースコード
import heapq class Heap_Dict: def __init__(self, Mode=True): """ Mode: True → 最小値, False → 最大値 """ self.heap=[] self.dict={} self.Mode=Mode self.__length=0 def __bool__(self): return bool(self.heap) def __len__(self): return self.__length def __contains__(self, x): return self.is_exist(x) def insert(self, x): """ 要素 x を追加する. """ if self.Mode and not self.is_exist(x): heapq.heappush(self.heap,x) elif not self.Mode and not self.is_exist(x): heapq.heappush(self.heap,-x) if x in self.dict: self.dict[x]+=1 else: self.dict[x]=1 self.__length+=1 def erase(self, x): """ x を消す. """ assert (x in self.dict) and (self.dict[x]) self.dict[x]-=1 self.__length-=1 while self.heap: y=self.heap[0] if not self.Mode:y=-y if self.dict[y]==0: heapq.heappop(self.heap) else: break def is_exist(self, x): """ キューに x が存在するかどうかを判定する. """ return (x in self.dict) and (self.dict[x]) def get_min(self): """ キューにある最小値を返す. ※ Mode=True でないと使えない. """ assert self.Mode if self.heap: return self.heap[0] else: return float("inf") def pop_min(self): """ キューにある最小値を取り出す. ※ Mode=True でないと使えない. """ assert self.Mode x=self.get_min() self.erase(x) return x def get_max(self): """ キューにある最大値を返す. ※ Mode=False でないと使えない. """ assert not self.Mode if self.heap: return -self.heap[0] else: return -float("inf") def pop_max(self): """ キューにある最小値を取り出す. ※ Mode = False でないと使えない. """ assert not self.Mode x=self.get_max() self.erase(x) return x def count(self, x): """ x の個数を求める. """ if x not in self.dict: return 0 else: return self.dict[x] #================================================== from collections import defaultdict import sys input=sys.stdin.readline write=sys.stdout.write N,M=map(int,input().split()) A=list(map(int,input().split())) H=Heap_Dict(False) K=defaultdict(int) L=defaultdict(lambda :Heap_Dict(False)) for x,a in enumerate(A,1): K[x]+=a H.insert(a) L[a].insert(x) Q=int(input()) Ans=[] for _ in range(Q): T,X,Y=map(int,input().split()) if T==1: H.erase(K[X]) L[K[X]].erase(X) K[X]+=Y H.insert(K[X]) L[K[X]].insert(X) elif T==2: H.erase(K[X]) L[K[X]].erase(X) K[X]-=Y H.insert(K[X]) L[K[X]].insert(X) else: alpha=H.get_max() Ans.append(L[alpha].get_max()) write("\n".join(map(str,Ans)))