結果

問題 No.945 YKC饅頭
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-03 23:09:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 136,904 KB
最終ジャッジ日時 2024-11-17 12:56:24
合計ジャッジ時間 17,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 32 ms
52,460 KB
testcase_02 AC 34 ms
53,376 KB
testcase_03 AC 45 ms
62,208 KB
testcase_04 AC 34 ms
52,608 KB
testcase_05 AC 36 ms
53,760 KB
testcase_06 AC 44 ms
61,312 KB
testcase_07 AC 39 ms
59,904 KB
testcase_08 AC 34 ms
53,120 KB
testcase_09 AC 35 ms
54,144 KB
testcase_10 AC 35 ms
54,144 KB
testcase_11 AC 37 ms
53,632 KB
testcase_12 AC 41 ms
60,800 KB
testcase_13 AC 41 ms
60,544 KB
testcase_14 AC 45 ms
61,952 KB
testcase_15 AC 33 ms
53,888 KB
testcase_16 AC 36 ms
59,392 KB
testcase_17 AC 36 ms
55,296 KB
testcase_18 AC 34 ms
53,760 KB
testcase_19 AC 32 ms
52,992 KB
testcase_20 AC 32 ms
53,376 KB
testcase_21 AC 32 ms
52,864 KB
testcase_22 AC 45 ms
62,976 KB
testcase_23 AC 49 ms
65,536 KB
testcase_24 AC 44 ms
62,464 KB
testcase_25 AC 41 ms
61,312 KB
testcase_26 AC 42 ms
61,952 KB
testcase_27 AC 35 ms
52,736 KB
testcase_28 AC 32 ms
52,992 KB
testcase_29 AC 32 ms
52,736 KB
testcase_30 AC 32 ms
52,864 KB
testcase_31 AC 109 ms
80,256 KB
testcase_32 AC 75 ms
81,536 KB
testcase_33 AC 178 ms
92,416 KB
testcase_34 AC 263 ms
109,088 KB
testcase_35 AC 792 ms
127,904 KB
testcase_36 AC 308 ms
116,700 KB
testcase_37 AC 274 ms
112,504 KB
testcase_38 AC 278 ms
107,932 KB
testcase_39 AC 152 ms
86,400 KB
testcase_40 AC 138 ms
86,784 KB
testcase_41 AC 91 ms
81,280 KB
testcase_42 AC 419 ms
121,688 KB
testcase_43 AC 265 ms
112,416 KB
testcase_44 AC 375 ms
115,876 KB
testcase_45 AC 351 ms
123,400 KB
testcase_46 AC 71 ms
79,232 KB
testcase_47 AC 289 ms
108,244 KB
testcase_48 AC 145 ms
83,840 KB
testcase_49 AC 226 ms
92,516 KB
testcase_50 AC 383 ms
129,172 KB
testcase_51 AC 818 ms
136,468 KB
testcase_52 AC 1,005 ms
136,904 KB
testcase_53 AC 611 ms
136,288 KB
testcase_54 AC 529 ms
136,596 KB
testcase_55 AC 1,046 ms
136,380 KB
testcase_56 AC 42 ms
66,560 KB
testcase_57 AC 44 ms
66,048 KB
testcase_58 AC 404 ms
105,668 KB
testcase_59 AC 450 ms
109,568 KB
testcase_60 AC 226 ms
94,464 KB
testcase_61 AC 421 ms
107,120 KB
testcase_62 AC 401 ms
106,100 KB
testcase_63 AC 55 ms
74,368 KB
testcase_64 AC 244 ms
95,348 KB
testcase_65 AC 202 ms
92,928 KB
testcase_66 AC 188 ms
92,032 KB
testcase_67 AC 292 ms
100,480 KB
testcase_68 AC 241 ms
94,464 KB
testcase_69 AC 128 ms
87,296 KB
testcase_70 AC 155 ms
88,704 KB
testcase_71 AC 147 ms
88,704 KB
testcase_72 AC 293 ms
97,408 KB
testcase_73 AC 536 ms
108,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.readline

import heapq

n, m = map(int, input().split())

Q = [[] for i in range(n)]
for i in range(m):
    l, r, t = map(str, input().split())
    l, r = int(l), int(r)
    l, r = l-1, r-1
    if t == 'Y':
        c = 0
    elif t == 'K':
        c = 1
    else:
        c = 2
    Q[l].append((i, r, c))

ans = [0]*3
hq = []
heapq.heapify(hq)
for i in range(n):
    for j, r, c in Q[i]:
        heapq.heappush(hq, (j, r, c))
    while hq:
        j, r, c = hq[0]
        if i <= r:
            ans[c] += 1
            break
        else:
            heapq.heappop(hq)
print(*ans)
0