結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

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