結果

問題 No.2804 Fixer And Ratism
ユーザー moon17moon17
提出日時 2024-07-13 18:16:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 943 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,756 KB
最終ジャッジ日時 2024-07-13 18:16:37
合計ジャッジ時間 7,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,560 KB
testcase_01 AC 39 ms
53,164 KB
testcase_02 AC 41 ms
52,948 KB
testcase_03 AC 103 ms
75,984 KB
testcase_04 AC 96 ms
75,888 KB
testcase_05 WA -
testcase_06 AC 135 ms
75,748 KB
testcase_07 WA -
testcase_08 AC 97 ms
76,300 KB
testcase_09 AC 81 ms
76,296 KB
testcase_10 AC 89 ms
76,024 KB
testcase_11 AC 155 ms
76,076 KB
testcase_12 AC 118 ms
76,136 KB
testcase_13 AC 94 ms
75,872 KB
testcase_14 AC 116 ms
76,292 KB
testcase_15 AC 83 ms
76,016 KB
testcase_16 AC 126 ms
76,104 KB
testcase_17 AC 94 ms
75,896 KB
testcase_18 WA -
testcase_19 AC 75 ms
74,248 KB
testcase_20 WA -
testcase_21 AC 146 ms
76,012 KB
testcase_22 WA -
testcase_23 AC 153 ms
76,212 KB
testcase_24 AC 155 ms
76,344 KB
testcase_25 AC 155 ms
76,316 KB
testcase_26 AC 153 ms
75,956 KB
testcase_27 AC 154 ms
76,100 KB
testcase_28 AC 162 ms
76,576 KB
testcase_29 AC 174 ms
76,172 KB
testcase_30 AC 158 ms
76,088 KB
testcase_31 WA -
testcase_32 AC 152 ms
76,628 KB
testcase_33 AC 42 ms
54,556 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)
  while len(qs)>n:
    r,s=qs.pop()
    print(s)
  while len(ps)>n-len(qs):
    r,s=ps.pop()
    print(s)
0