結果

問題 No.2804 Fixer And Ratism
ユーザー hato336hato336
提出日時 2024-07-12 21:38:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-07-12 21:38:58
合計ジャッジ時間 17,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
85,760 KB
testcase_01 AC 141 ms
85,632 KB
testcase_02 AC 125 ms
85,760 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 221 ms
90,112 KB
testcase_10 WA -
testcase_11 AC 948 ms
94,080 KB
testcase_12 WA -
testcase_13 AC 327 ms
90,368 KB
testcase_14 AC 417 ms
91,008 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 399 ms
90,752 KB
testcase_18 WA -
testcase_19 AC 201 ms
90,240 KB
testcase_20 WA -
testcase_21 AC 1,102 ms
95,372 KB
testcase_22 WA -
testcase_23 AC 1,165 ms
96,640 KB
testcase_24 WA -
testcase_25 AC 1,249 ms
97,536 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,243 ms
97,536 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,028 ms
94,464 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
input = sys.stdin.readline
n,q = map(int,input().split())
h = []
c = collections.defaultdict(int)
for i in range(q):
    t = input().split()
    if t[0] == '1':
        t,s,r = t
        r = int(r)
        heapq.heappush(h,(r,s))
        c[s] = r

    if t[0] == '2':
        t,x = t
        x = int(x)
        n -= x
    if t[0] == '3':
        t,s,x = t
        x = int(x)
        n += x
        h.remove((c[s],s))
        h.append((c[s] | (1<<40),s))
        c[s] |= 1<<40
    heapq.heapify(h)
    while len(h) > n:
        ans = heapq.heappop(h)
        print(ans[1])
0