結果

問題 No.2804 Fixer And Ratism
ユーザー moon17moon17
提出日時 2024-07-13 18:18:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,748 KB
最終ジャッジ日時 2024-07-13 18:18:42
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,848 KB
testcase_01 AC 38 ms
53,852 KB
testcase_02 AC 37 ms
54,252 KB
testcase_03 AC 103 ms
76,444 KB
testcase_04 AC 92 ms
76,144 KB
testcase_05 AC 81 ms
76,748 KB
testcase_06 AC 125 ms
76,268 KB
testcase_07 AC 90 ms
76,180 KB
testcase_08 AC 92 ms
76,120 KB
testcase_09 AC 74 ms
76,464 KB
testcase_10 AC 90 ms
76,428 KB
testcase_11 AC 131 ms
76,272 KB
testcase_12 AC 111 ms
76,320 KB
testcase_13 AC 84 ms
76,156 KB
testcase_14 AC 107 ms
76,492 KB
testcase_15 AC 76 ms
76,120 KB
testcase_16 AC 118 ms
76,084 KB
testcase_17 AC 88 ms
76,420 KB
testcase_18 AC 136 ms
76,356 KB
testcase_19 AC 74 ms
74,776 KB
testcase_20 AC 79 ms
76,284 KB
testcase_21 AC 125 ms
76,272 KB
testcase_22 AC 81 ms
74,880 KB
testcase_23 AC 153 ms
76,604 KB
testcase_24 AC 152 ms
76,408 KB
testcase_25 AC 148 ms
76,288 KB
testcase_26 AC 144 ms
76,544 KB
testcase_27 AC 151 ms
76,272 KB
testcase_28 AC 149 ms
76,284 KB
testcase_29 AC 155 ms
76,400 KB
testcase_30 AC 160 ms
76,264 KB
testcase_31 AC 144 ms
76,228 KB
testcase_32 AC 156 ms
76,280 KB
testcase_33 AC 38 ms
54,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*
class Heapq:
 def __init__(self,a=[]):self.q,self.p=a,[];heapify(self.q)
 def push(self,x):heappush(self.q,x)
 def erase(self,x):heappush(self.p,x)
 def clean(self):
  while self.p and self.q[0]==self.p[0]:heappop(self.q);heappop(self.p)
 def pop(self,exc=None):return heappop(self.q)if self.clean()or self.q else exc
 def top(self,exc=None):return self.q[0]if self.clean()or self.q else exc
 def __len__(self):return len(self.q)-len(self.p)
n,Q=map(int,input().split())
ps=Heapq([])
qs=Heapq([])
p=set()
d={}
for _ in range(Q):
  k,s,*r=input().split()
  if k=='1':
    r=int(r[0])
    ps.push((r,s))
    p|={s}
    d[s]=r
  if k=='2':
    x=int(s)
    n-=x
  if k=='3':
    x=int(r[0])
    n+=x
    if s in p:
      ps.erase((d[s],s))
      qs.push((d[s],s))
      p.discard(s)
  # print(n,k,s,r,ps.p,ps.q,qs.p,qs.q)
  ss=[]
  while len(qs)>n:
    heappush(ss,qs.pop())
  while len(ps)>n-len(qs):
    heappush(ss,ps.pop())
  while ss:
    print(heappop(ss)[1])
0