結果

問題 No.2804 Fixer And Ratism
ユーザー mkawa2mkawa2
提出日時 2024-07-12 21:29:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,740 KB
最終ジャッジ日時 2024-07-12 21:29:28
合計ジャッジ時間 4,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,040 KB
testcase_01 AC 42 ms
53,804 KB
testcase_02 AC 42 ms
54,004 KB
testcase_03 AC 80 ms
76,344 KB
testcase_04 AC 72 ms
76,136 KB
testcase_05 AC 62 ms
73,348 KB
testcase_06 AC 130 ms
76,160 KB
testcase_07 AC 73 ms
76,360 KB
testcase_08 AC 75 ms
76,740 KB
testcase_09 AC 57 ms
67,040 KB
testcase_10 AC 69 ms
76,336 KB
testcase_11 AC 94 ms
76,560 KB
testcase_12 AC 89 ms
76,008 KB
testcase_13 AC 66 ms
76,152 KB
testcase_14 AC 86 ms
76,404 KB
testcase_15 AC 60 ms
69,500 KB
testcase_16 AC 92 ms
76,048 KB
testcase_17 AC 71 ms
76,356 KB
testcase_18 AC 107 ms
76,656 KB
testcase_19 AC 86 ms
66,624 KB
testcase_20 AC 60 ms
71,716 KB
testcase_21 AC 102 ms
76,624 KB
testcase_22 AC 54 ms
65,508 KB
testcase_23 AC 120 ms
76,288 KB
testcase_24 AC 122 ms
76,280 KB
testcase_25 AC 121 ms
76,484 KB
testcase_26 AC 121 ms
76,328 KB
testcase_27 AC 121 ms
76,356 KB
testcase_28 AC 121 ms
76,280 KB
testcase_29 AC 121 ms
76,344 KB
testcase_30 AC 121 ms
76,632 KB
testcase_31 AC 147 ms
76,512 KB
testcase_32 AC 121 ms
76,624 KB
testcase_33 AC 41 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from collections import defaultdict

n, q = LI()
mem = defaultdict(int)
rr = defaultdict(int)
for _ in range(q):
    t, *sr = SI().split()
    if t == "1":
        s, r = sr
        mem[s] = 1
        rr[s] = int(r)
    if t == "2":
        x = int(sr[0])
        n -= x
    if t == "3":
        s, x = sr
        mem[s] = 2
        n += int(x)
    if n<len(mem):
        mr = [(mem[s]*5000+rr[s], s) for s in mem]
        mr.sort(key=lambda x:-x[0])
        now = []
        while len(mr) > n:
            _, s = mr.pop()
            now.append(s)
            del mem[s]
        now.sort(key=lambda s: rr[s])
        for s in now: print(s)
0