結果

問題 No.2804 Fixer And Ratism
ユーザー hato336hato336
提出日時 2024-07-12 21:41:44
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 949 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 97,684 KB
最終ジャッジ日時 2024-07-16 03:11:55
合計ジャッジ時間 24,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
85,656 KB
testcase_01 AC 155 ms
85,668 KB
testcase_02 AC 156 ms
85,560 KB
testcase_03 AC 861 ms
92,668 KB
testcase_04 AC 511 ms
90,772 KB
testcase_05 AC 308 ms
90,332 KB
testcase_06 AC 268 ms
90,504 KB
testcase_07 AC 317 ms
91,008 KB
testcase_08 AC 243 ms
90,252 KB
testcase_09 AC 277 ms
90,600 KB
testcase_10 AC 241 ms
90,416 KB
testcase_11 AC 1,263 ms
94,408 KB
testcase_12 AC 550 ms
90,588 KB
testcase_13 AC 463 ms
90,164 KB
testcase_14 AC 555 ms
90,832 KB
testcase_15 AC 258 ms
90,240 KB
testcase_16 AC 383 ms
90,800 KB
testcase_17 AC 587 ms
90,760 KB
testcase_18 AC 436 ms
90,716 KB
testcase_19 AC 248 ms
90,280 KB
testcase_20 AC 220 ms
90,120 KB
testcase_21 AC 1,786 ms
95,600 KB
testcase_22 AC 205 ms
89,804 KB
testcase_23 AC 1,849 ms
96,868 KB
testcase_24 AC 301 ms
90,300 KB
testcase_25 TLE -
testcase_26 AC 761 ms
90,568 KB
testcase_27 AC 257 ms
90,180 KB
testcase_28 AC 1,877 ms
97,684 KB
testcase_29 AC 696 ms
90,716 KB
testcase_30 AC 863 ms
91,108 KB
testcase_31 AC 300 ms
90,200 KB
testcase_32 AC 1,462 ms
94,156 KB
testcase_33 AC 154 ms
85,380 KB
権限があれば一括ダウンロードができます

ソースコード

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)
        ans = list(ans)
        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