結果

問題 No.945 YKC饅頭
ユーザー maspymaspy
提出日時 2020-03-07 03:31:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,233 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,424 KB
最終ジャッジ日時 2024-10-14 11:08:22
合計ジャッジ時間 23,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
11,008 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 35 ms
11,008 KB
testcase_23 AC 34 ms
11,008 KB
testcase_24 AC 32 ms
11,008 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 32 ms
11,008 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 78 ms
14,592 KB
testcase_32 AC 127 ms
19,840 KB
testcase_33 AC 252 ms
26,752 KB
testcase_34 AC 375 ms
33,792 KB
testcase_35 AC 923 ms
48,768 KB
testcase_36 AC 430 ms
34,944 KB
testcase_37 AC 385 ms
32,768 KB
testcase_38 AC 371 ms
31,616 KB
testcase_39 AC 176 ms
20,992 KB
testcase_40 AC 219 ms
24,064 KB
testcase_41 AC 135 ms
18,688 KB
testcase_42 AC 600 ms
41,600 KB
testcase_43 AC 363 ms
32,384 KB
testcase_44 AC 540 ms
40,704 KB
testcase_45 AC 550 ms
43,008 KB
testcase_46 AC 79 ms
15,744 KB
testcase_47 AC 399 ms
34,048 KB
testcase_48 AC 102 ms
15,744 KB
testcase_49 AC 253 ms
24,576 KB
testcase_50 AC 620 ms
45,184 KB
testcase_51 AC 997 ms
55,296 KB
testcase_52 AC 1,233 ms
55,296 KB
testcase_53 AC 870 ms
55,424 KB
testcase_54 AC 809 ms
55,168 KB
testcase_55 AC 1,094 ms
55,296 KB
testcase_56 AC 169 ms
25,088 KB
testcase_57 AC 135 ms
24,960 KB
testcase_58 AC 587 ms
44,672 KB
testcase_59 AC 709 ms
49,024 KB
testcase_60 AC 344 ms
33,536 KB
testcase_61 AC 633 ms
46,080 KB
testcase_62 AC 625 ms
45,184 KB
testcase_63 AC 138 ms
25,216 KB
testcase_64 AC 344 ms
34,432 KB
testcase_65 AC 316 ms
32,384 KB
testcase_66 AC 299 ms
31,872 KB
testcase_67 AC 487 ms
39,552 KB
testcase_68 AC 347 ms
33,920 KB
testcase_69 AC 200 ms
27,648 KB
testcase_70 AC 226 ms
28,288 KB
testcase_71 AC 222 ms
28,416 KB
testcase_72 AC 416 ms
36,608 KB
testcase_73 AC 684 ms
47,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from heapq import heappop, heappush

# %%
N, M = map(int, readline().split())
L_to_IRT = [[] for _ in range(N+1)]
for i in range(M):
    L, R, T = readline().decode().split()
    L = int(L)
    R = int(R)
    L_to_IRT[L].append((i,R,T))


# %%
q = []
Y = 0
K = 0
C = 0
for L, IRT in enumerate(L_to_IRT):
    for x in IRT:
        heappush(q, x)
    while q and q[0][1] < L:
        heappop(q)
    if not q:
        continue
    x = q[0][2]
    if x == 'Y':
        Y += 1
    elif x == 'K':
        K += 1
    else:
        C += 1


# %%
print(Y,K,C)
0