結果

問題 No.2804 Fixer And Ratism
ユーザー mkawa2mkawa2
提出日時 2024-07-12 21:23:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,354 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 83,928 KB
最終ジャッジ日時 2024-07-12 21:23:20
合計ジャッジ時間 10,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,392 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 TLE -
testcase_04 AC 1,110 ms
76,416 KB
testcase_05 AC 308 ms
76,416 KB
testcase_06 AC 345 ms
76,796 KB
testcase_07 AC 326 ms
76,796 KB
testcase_08 AC 226 ms
76,800 KB
testcase_09 AC 270 ms
76,944 KB
testcase_10 AC 191 ms
76,416 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
    mr = [(mem[s], rr[s], s) for s in mem if mem[s]]
    mr.sort(reverse=True)
    now = []
    while len(mr) > n:
        _, _, s = mr.pop()
        now.append(s)
        mem[s]=0
    now.sort(key=lambda s: rr[s])
    for s in now: print(s)
0