結果

問題 No.945 YKC饅頭
ユーザー mkawa2mkawa2
提出日時 2019-12-12 09:43:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,891 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 79,372 KB
最終ジャッジ日時 2024-06-24 19:30:20
合計ジャッジ時間 33,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 36 ms
11,136 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 33 ms
11,136 KB
testcase_06 AC 36 ms
11,136 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 33 ms
11,136 KB
testcase_11 AC 34 ms
11,008 KB
testcase_12 AC 34 ms
11,136 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 34 ms
11,136 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 35 ms
11,008 KB
testcase_18 AC 36 ms
11,136 KB
testcase_19 AC 34 ms
11,008 KB
testcase_20 AC 34 ms
11,136 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 36 ms
11,392 KB
testcase_23 AC 37 ms
11,136 KB
testcase_24 AC 37 ms
11,392 KB
testcase_25 AC 36 ms
11,264 KB
testcase_26 AC 36 ms
11,264 KB
testcase_27 AC 32 ms
11,136 KB
testcase_28 AC 32 ms
11,008 KB
testcase_29 AC 31 ms
11,136 KB
testcase_30 AC 31 ms
11,008 KB
testcase_31 AC 93 ms
17,060 KB
testcase_32 AC 123 ms
27,848 KB
testcase_33 AC 327 ms
36,284 KB
testcase_34 AC 622 ms
46,592 KB
testcase_35 AC 1,427 ms
73,012 KB
testcase_36 AC 798 ms
41,352 KB
testcase_37 AC 718 ms
38,672 KB
testcase_38 AC 664 ms
38,544 KB
testcase_39 AC 222 ms
30,980 KB
testcase_40 AC 226 ms
33,224 KB
testcase_41 AC 136 ms
28,052 KB
testcase_42 AC 954 ms
56,008 KB
testcase_43 AC 699 ms
37,632 KB
testcase_44 AC 860 ms
53,900 KB
testcase_45 AC 1,012 ms
53,088 KB
testcase_46 AC 81 ms
20,148 KB
testcase_47 AC 665 ms
45,920 KB
testcase_48 AC 161 ms
17,424 KB
testcase_49 AC 355 ms
34,368 KB
testcase_50 AC 1,087 ms
55,892 KB
testcase_51 AC 1,676 ms
79,372 KB
testcase_52 AC 1,837 ms
79,252 KB
testcase_53 AC 1,450 ms
79,208 KB
testcase_54 AC 1,368 ms
79,152 KB
testcase_55 AC 1,891 ms
79,344 KB
testcase_56 AC 208 ms
42,716 KB
testcase_57 AC 170 ms
42,716 KB
testcase_58 AC 857 ms
66,644 KB
testcase_59 AC 1,034 ms
72,088 KB
testcase_60 AC 445 ms
53,208 KB
testcase_61 AC 911 ms
68,296 KB
testcase_62 AC 859 ms
67,208 KB
testcase_63 AC 174 ms
43,172 KB
testcase_64 AC 471 ms
54,124 KB
testcase_65 AC 394 ms
51,756 KB
testcase_66 AC 382 ms
51,076 KB
testcase_67 AC 662 ms
60,668 KB
testcase_68 AC 445 ms
53,456 KB
testcase_69 AC 245 ms
46,072 KB
testcase_70 AC 278 ms
46,932 KB
testcase_71 AC 276 ms
47,012 KB
testcase_72 AC 577 ms
56,824 KB
testcase_73 AC 976 ms
70,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from collections import defaultdict
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    n, m = MI()
    to = defaultdict(list)
    ttomark = {"Y": 0, "K": 1, "C": 2}
    for p in range(m):
        l, r, t = input().split()
        l, r = int(l) - 1, int(r) - 1
        to[l].append([p, r, ttomark[t]])
    hp = []
    ans = [0] * 3
    for i in range(n):
        for prm in to[i]:
            heappush(hp, prm)
        while hp and hp[0][1] < i: heappop(hp)
        if not hp:continue
        ans[hp[0][2]] += 1
    print(*ans)

main()
0