結果

問題 No.2804 Fixer And Ratism
ユーザー YuuuTYuuuT
提出日時 2024-07-12 21:14:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 87,372 KB
最終ジャッジ日時 2024-07-12 21:14:12
合計ジャッジ時間 6,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,808 KB
testcase_01 AC 43 ms
54,844 KB
testcase_02 AC 42 ms
55,512 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 68 ms
71,428 KB
testcase_10 WA -
testcase_11 AC 137 ms
82,288 KB
testcase_12 WA -
testcase_13 AC 85 ms
76,772 KB
testcase_14 AC 130 ms
80,380 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 92 ms
77,024 KB
testcase_18 WA -
testcase_19 AC 62 ms
67,648 KB
testcase_20 WA -
testcase_21 AC 160 ms
84,120 KB
testcase_22 WA -
testcase_23 AC 186 ms
86,844 KB
testcase_24 WA -
testcase_25 AC 185 ms
86,920 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 189 ms
87,260 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 189 ms
86,872 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
    fixed.add(s)
    heappush(fix,(rate[s],s))
0