結果

問題 No.945 YKC饅頭
ユーザー rlangevinrlangevin
提出日時 2023-12-07 23:06:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,240 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 146,784 KB
最終ジャッジ日時 2024-09-27 02:24:45
合計ジャッジ時間 20,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 53 ms
62,720 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 45 ms
58,880 KB
testcase_06 AC 52 ms
61,568 KB
testcase_07 AC 47 ms
59,904 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 46 ms
53,632 KB
testcase_10 AC 47 ms
58,752 KB
testcase_11 AC 45 ms
57,856 KB
testcase_12 AC 52 ms
61,312 KB
testcase_13 AC 52 ms
61,312 KB
testcase_14 AC 56 ms
62,720 KB
testcase_15 AC 40 ms
53,248 KB
testcase_16 AC 45 ms
59,008 KB
testcase_17 AC 45 ms
54,272 KB
testcase_18 AC 47 ms
59,392 KB
testcase_19 AC 44 ms
57,856 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 40 ms
52,864 KB
testcase_22 AC 57 ms
63,232 KB
testcase_23 AC 63 ms
65,408 KB
testcase_24 AC 55 ms
62,848 KB
testcase_25 AC 53 ms
61,824 KB
testcase_26 AC 53 ms
62,464 KB
testcase_27 AC 46 ms
57,984 KB
testcase_28 AC 44 ms
58,752 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 127 ms
81,792 KB
testcase_32 AC 107 ms
86,784 KB
testcase_33 AC 226 ms
98,560 KB
testcase_34 AC 305 ms
112,104 KB
testcase_35 AC 965 ms
136,476 KB
testcase_36 AC 393 ms
115,716 KB
testcase_37 AC 349 ms
112,816 KB
testcase_38 AC 348 ms
110,212 KB
testcase_39 AC 198 ms
90,240 KB
testcase_40 AC 181 ms
93,952 KB
testcase_41 AC 122 ms
83,712 KB
testcase_42 AC 519 ms
125,032 KB
testcase_43 AC 323 ms
112,260 KB
testcase_44 AC 447 ms
122,316 KB
testcase_45 AC 434 ms
126,304 KB
testcase_46 AC 93 ms
82,560 KB
testcase_47 AC 353 ms
112,336 KB
testcase_48 AC 165 ms
83,988 KB
testcase_49 AC 272 ms
96,748 KB
testcase_50 AC 473 ms
132,724 KB
testcase_51 AC 1,044 ms
146,488 KB
testcase_52 AC 1,240 ms
146,784 KB
testcase_53 AC 752 ms
145,772 KB
testcase_54 AC 639 ms
146,196 KB
testcase_55 AC 1,160 ms
146,696 KB
testcase_56 AC 65 ms
76,416 KB
testcase_57 AC 64 ms
71,808 KB
testcase_58 AC 476 ms
111,832 KB
testcase_59 AC 561 ms
115,968 KB
testcase_60 AC 279 ms
100,752 KB
testcase_61 AC 486 ms
113,064 KB
testcase_62 AC 477 ms
112,452 KB
testcase_63 AC 79 ms
77,184 KB
testcase_64 AC 282 ms
102,292 KB
testcase_65 AC 248 ms
98,176 KB
testcase_66 AC 235 ms
98,412 KB
testcase_67 AC 350 ms
107,008 KB
testcase_68 AC 261 ms
100,560 KB
testcase_69 AC 151 ms
91,392 KB
testcase_70 AC 182 ms
94,464 KB
testcase_71 AC 194 ms
92,928 KB
testcase_72 AC 337 ms
104,452 KB
testcase_73 AC 584 ms
115,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

N, M = map(int, input().split())
ans = [-1] * N
C = {"Y":0, "K":1, "C":2}
YKC = ["Y", "K", "C"]
D = [[] for i in range(N)]
for i in range(M):
    L, R, T = input().split()
    L, R = int(L) - 1, int(R) - 1
    D[L].append((R, C[T], i))
    
H = []
for i in range(N):
    for r, c, ind in D[i]:
        heappush(H, (ind, r, c))
    while H:
        if H[0][1] >= i:
            ans[i] = YKC[H[0][2]]
            break
        else:
            heappop(H)
            
print(ans.count("Y"), ans.count("K"), ans.count("C"))
0