結果

問題 No.2804 Fixer And Ratism
ユーザー YuuuTYuuuT
提出日時 2024-07-12 21:17:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,405 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-07-12 21:17:25
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,680 KB
testcase_01 AC 45 ms
54,584 KB
testcase_02 AC 45 ms
55,304 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 59 ms
67,896 KB
testcase_10 WA -
testcase_11 AC 95 ms
76,692 KB
testcase_12 WA -
testcase_13 AC 67 ms
76,448 KB
testcase_14 AC 87 ms
76,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 76 ms
76,688 KB
testcase_18 WA -
testcase_19 AC 59 ms
67,548 KB
testcase_20 WA -
testcase_21 AC 100 ms
76,164 KB
testcase_22 WA -
testcase_23 AC 120 ms
76,428 KB
testcase_24 WA -
testcase_25 AC 121 ms
76,484 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 121 ms
76,440 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 119 ms
76,880 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#//////////////////////////////////
N,Q = ms()
fix,nofix = [],[]
fixed = set()
rate = defaultdict(int)
for _ in range(Q):
  f,*s = input().split()
  if f=="1":
    s,r = s
    r = int(r)
    heappush(nofix,(r,s))
    rate[s] = r
    N -= 1
    while N<0:
      done = False
      while nofix:
        _,s = heappop(nofix)
        if s not in fixed:
          print(s)
          done = True
          break
      if done==False:
        _,s = heappop(fix)
        print(s)
      N += 1
  elif f=="2":
    x = s[0]
    x = int(x)
    N -= x
    while N<0:
      done = False
      while nofix:
        _,s = heappop(nofix)
        if s not in fixed:
          print(s)
          done = True
          break
      if done==False:
        _,s = heappop(fix)
        print(s)
      N += 1
  else:
    s,x = s
    x = int(x)
    N += x
    if s in fixed: continue
    fixed.add(s)
    heappush(fix,(rate[s],s))
    

0