結果

問題 No.2804 Fixer And Ratism
ユーザー ntudantuda
提出日時 2024-07-13 19:06:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 77,388 KB
最終ジャッジ日時 2024-07-13 19:06:19
合計ジャッジ時間 6,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,736 KB
testcase_01 AC 43 ms
54,724 KB
testcase_02 WA -
testcase_03 AC 107 ms
76,756 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 97 ms
76,572 KB
testcase_09 AC 76 ms
74,288 KB
testcase_10 AC 92 ms
76,692 KB
testcase_11 AC 128 ms
76,656 KB
testcase_12 AC 124 ms
76,576 KB
testcase_13 AC 103 ms
76,612 KB
testcase_14 AC 119 ms
76,672 KB
testcase_15 AC 84 ms
76,448 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 72 ms
72,976 KB
testcase_20 WA -
testcase_21 AC 140 ms
76,688 KB
testcase_22 WA -
testcase_23 AC 195 ms
76,508 KB
testcase_24 AC 164 ms
76,792 KB
testcase_25 AC 167 ms
76,728 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 168 ms
76,692 KB
testcase_29 WA -
testcase_30 AC 179 ms
76,568 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 44 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from collections import defaultdict

N, Q0 = map(int, input().split())
dic1 = defaultdict(int)
dic2 = defaultdict(int)
Q = []
ans = []
upd = set()
for q in range(Q0):
    t, *sr = input().split()
    if t == "1":
        s, r = sr
        r = int(r)
        dic1[s] = r
        dic2[s] = 0
        heappush(Q,(0, r, s))
        tmp = []
        if N + len(upd) < len(Q):
            a, b, s = heappop(Q)
            if a == 0 and (a,b,s) in upd:
                upd.remove((a,b,s))
            ans.append(s)
    elif t == "2":
        x = int(sr[0])
        N = max(0, N - x)
        tmp = []
        while N + len(upd) < len(Q):
            a, b, s = heappop(Q)
            if a == 0 and (a,b,s) in upd:
                upd.remove((a,b,s))
                continue
            tmp.append((b,s))
        tmp.sort()
        for t, s in tmp:
            ans.append(s)
    else:
        s, x = sr
        x = int(x)
        N += x
        if dic2[s] == 0:
            upd.add((0,dic1[s], s))
            heappush(Q,(1,dic1[s],s))
        dic2[s] = 1

for s in ans:
    print(s)
0