結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,008 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 1,164 ms
77,312 KB
testcase_04 AC 555 ms
76,544 KB
testcase_05 AC 185 ms
76,948 KB
testcase_06 AC 162 ms
76,544 KB
testcase_07 AC 176 ms
76,928 KB
testcase_08 AC 109 ms
76,544 KB
testcase_09 AC 169 ms
76,672 KB
testcase_10 AC 112 ms
76,416 KB
testcase_11 TLE -
testcase_12 AC 497 ms
76,928 KB
testcase_13 AC 504 ms
76,928 KB
testcase_14 AC 507 ms
76,544 KB
testcase_15 AC 128 ms
76,832 KB
testcase_16 AC 232 ms
76,804 KB
testcase_17 AC 721 ms
77,056 KB
testcase_18 AC 257 ms
76,800 KB
testcase_19 AC 125 ms
77,004 KB
testcase_20 AC 80 ms
76,928 KB
testcase_21 TLE -
testcase_22 AC 77 ms
73,600 KB
testcase_23 TLE -
testcase_24 AC 198 ms
77,312 KB
testcase_25 TLE -
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]*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