結果

問題 No.2804 Fixer And Ratism
ユーザー YuuuTYuuuT
提出日時 2024-07-12 21:19:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,495 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,776 KB
最終ジャッジ日時 2024-07-12 21:19:18
合計ジャッジ時間 5,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,404 KB
testcase_01 AC 45 ms
56,276 KB
testcase_02 AC 45 ms
55,952 KB
testcase_03 AC 82 ms
76,204 KB
testcase_04 AC 75 ms
76,756 KB
testcase_05 AC 63 ms
73,688 KB
testcase_06 AC 101 ms
76,372 KB
testcase_07 AC 77 ms
76,376 KB
testcase_08 AC 74 ms
76,404 KB
testcase_09 AC 60 ms
68,604 KB
testcase_10 AC 72 ms
76,412 KB
testcase_11 AC 94 ms
76,352 KB
testcase_12 AC 98 ms
76,216 KB
testcase_13 AC 70 ms
76,512 KB
testcase_14 AC 91 ms
76,128 KB
testcase_15 AC 60 ms
68,872 KB
testcase_16 AC 97 ms
76,548 KB
testcase_17 AC 75 ms
76,172 KB
testcase_18 AC 143 ms
76,340 KB
testcase_19 AC 63 ms
67,620 KB
testcase_20 AC 64 ms
73,376 KB
testcase_21 AC 104 ms
76,416 KB
testcase_22 AC 59 ms
65,780 KB
testcase_23 AC 122 ms
76,564 KB
testcase_24 AC 123 ms
76,360 KB
testcase_25 AC 122 ms
76,476 KB
testcase_26 AC 124 ms
76,100 KB
testcase_27 AC 121 ms
76,132 KB
testcase_28 AC 122 ms
76,760 KB
testcase_29 AC 139 ms
76,504 KB
testcase_30 AC 122 ms
76,776 KB
testcase_31 AC 121 ms
76,432 KB
testcase_32 AC 121 ms
76,356 KB
testcase_33 AC 45 ms
55,724 KB
権限があれば一括ダウンロードができます

ソースコード

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
    ans = []
    while N<0:
      done = False
      while nofix:
        r,s = heappop(nofix)
        if s not in fixed:
          heappush(ans,(r,s))
          done = True
          break
      if done==False:
        r,s = heappop(fix)
        heappush(ans,(r,s))
      N += 1
    while ans:
      _,s = heappop(ans)
      print(s)
  else:
    s,x = s
    x = int(x)
    N += x
    if s in fixed: continue
    fixed.add(s)
    heappush(fix,(rate[s],s))
    

0