結果

問題 No.945 YKC饅頭
ユーザー 👑 rin204rin204
提出日時 2022-02-11 21:04:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 876 ms / 2,000 ms
コード長 1,539 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 132,672 KB
最終ジャッジ日時 2024-06-27 16:16:44
合計ジャッジ時間 28,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,864 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 56 ms
60,288 KB
testcase_03 AC 101 ms
75,648 KB
testcase_04 AC 52 ms
59,392 KB
testcase_05 AC 59 ms
61,440 KB
testcase_06 AC 77 ms
67,200 KB
testcase_07 AC 70 ms
65,024 KB
testcase_08 AC 48 ms
53,504 KB
testcase_09 AC 69 ms
65,152 KB
testcase_10 AC 73 ms
66,432 KB
testcase_11 AC 64 ms
63,232 KB
testcase_12 AC 67 ms
64,000 KB
testcase_13 AC 87 ms
71,936 KB
testcase_14 AC 88 ms
72,192 KB
testcase_15 AC 71 ms
65,536 KB
testcase_16 AC 56 ms
60,672 KB
testcase_17 AC 98 ms
75,520 KB
testcase_18 AC 76 ms
67,712 KB
testcase_19 AC 45 ms
53,376 KB
testcase_20 AC 55 ms
60,416 KB
testcase_21 AC 59 ms
61,824 KB
testcase_22 AC 102 ms
75,776 KB
testcase_23 AC 101 ms
75,904 KB
testcase_24 AC 99 ms
75,520 KB
testcase_25 AC 103 ms
75,392 KB
testcase_26 AC 99 ms
75,520 KB
testcase_27 AC 44 ms
52,736 KB
testcase_28 AC 43 ms
53,120 KB
testcase_29 AC 41 ms
52,352 KB
testcase_30 AC 43 ms
52,736 KB
testcase_31 AC 189 ms
81,868 KB
testcase_32 AC 150 ms
85,632 KB
testcase_33 AC 330 ms
97,140 KB
testcase_34 AC 480 ms
104,080 KB
testcase_35 AC 744 ms
125,416 KB
testcase_36 AC 517 ms
101,972 KB
testcase_37 AC 492 ms
99,624 KB
testcase_38 AC 463 ms
99,484 KB
testcase_39 AC 277 ms
89,672 KB
testcase_40 AC 253 ms
91,648 KB
testcase_41 AC 169 ms
84,608 KB
testcase_42 AC 658 ms
112,972 KB
testcase_43 AC 450 ms
99,764 KB
testcase_44 AC 582 ms
112,888 KB
testcase_45 AC 685 ms
115,804 KB
testcase_46 AC 139 ms
82,048 KB
testcase_47 AC 492 ms
105,448 KB
testcase_48 AC 232 ms
83,456 KB
testcase_49 AC 315 ms
93,116 KB
testcase_50 AC 725 ms
118,424 KB
testcase_51 AC 837 ms
132,672 KB
testcase_52 AC 840 ms
132,468 KB
testcase_53 AC 832 ms
132,520 KB
testcase_54 AC 864 ms
132,280 KB
testcase_55 AC 861 ms
131,520 KB
testcase_56 AC 75 ms
76,288 KB
testcase_57 AC 71 ms
74,240 KB
testcase_58 AC 794 ms
113,212 KB
testcase_59 AC 859 ms
116,348 KB
testcase_60 AC 516 ms
102,932 KB
testcase_61 AC 746 ms
113,128 KB
testcase_62 AC 876 ms
114,068 KB
testcase_63 AC 127 ms
91,008 KB
testcase_64 AC 654 ms
105,380 KB
testcase_65 AC 580 ms
102,256 KB
testcase_66 AC 513 ms
100,968 KB
testcase_67 AC 640 ms
108,440 KB
testcase_68 AC 618 ms
103,564 KB
testcase_69 AC 282 ms
95,328 KB
testcase_70 AC 351 ms
97,296 KB
testcase_71 AC 346 ms
97,076 KB
testcase_72 AC 776 ms
107,580 KB
testcase_73 AC 858 ms
115,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

class Heapq:
    def __init__(self, lst = [], reverse = False):
        if reverse:
            self.pm = -1
            self.hq = [-l for l in lst]
        else:
            self.pm = 1
            self.hq = lst.copy()
        heapq.heapify(self.hq)
        self.tot = sum(lst)
        self.rm = []
        self.length = len(lst)
            
    def push(self, x):
        self.length += 1
        heapq.heappush(self.hq, x * self.pm)
        self.tot += x
    
    def pop(self):
        self.length -= 1
        ret = heapq.heappop(self.hq)
        self.tot -= self.pm * ret
        self.delete()
        return self.pm * ret
    
    def top(self):
        return self.pm * self.hq[0]
    
    def remove(self, x): # 存在しないものを消そうとするとバグる
        self.length -= 1
        self.tot -= x
        heapq.heappush(self.rm, self.pm * x)
        self.delete()
            
    def delete(self):
        while self.rm and self.rm[0] == self.hq[0]:
            heapq.heappop(self.rm)
            heapq.heappop(self.hq)

n, m = map(int, input().split())
add = [[] for _ in range(n)]
rem = [[] for _ in range(n)]
T = [""] * m
for i in range(m):
    l, r, t = input().split()
    T[i] = t
    add[int(l) - 1].append(i)
    rem[int(r) - 1].append(i)
    
ans = {"Y":0, "K":0, "C":0}
hq = Heapq()
for i in range(n):
    for j in add[i]:
        hq.push(j)
    if hq.length > 0:
        t = T[hq.top()]
        ans[t] += 1
    for j in rem[i]:
        hq.remove(j)
print(ans["Y"], ans["K"], ans["C"])

0