結果

問題 No.2804 Fixer And Ratism
ユーザー hato336hato336
提出日時 2024-07-12 21:40:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 925 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 97,592 KB
最終ジャッジ日時 2024-07-12 21:41:09
合計ジャッジ時間 15,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
85,760 KB
testcase_01 AC 125 ms
85,872 KB
testcase_02 AC 127 ms
85,848 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 230 ms
90,448 KB
testcase_10 RE -
testcase_11 AC 1,203 ms
94,448 KB
testcase_12 RE -
testcase_13 AC 369 ms
90,448 KB
testcase_14 AC 457 ms
90,804 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 463 ms
91,308 KB
testcase_18 RE -
testcase_19 AC 209 ms
90,480 KB
testcase_20 RE -
testcase_21 AC 1,444 ms
95,560 KB
testcase_22 RE -
testcase_23 AC 1,492 ms
97,000 KB
testcase_24 RE -
testcase_25 AC 1,635 ms
97,592 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,565 ms
97,524 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 1,205 ms
94,772 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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)
    a = []
    while len(h) > n:
        ans = heapq.heappop(h)
        if (ans[0] >> 40) & 1 == 1:
            ans[0] -= 1<<40
        a.append((ans[0],ans[1]))
    a.sort()
    for k,l in a:
        print(l)
0