結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2020-04-01 10:54:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,270 ms / 2,000 ms
コード長 1,575 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 135,188 KB
最終ジャッジ日時 2024-06-26 06:38:38
合計ジャッジ時間 31,097 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 51 ms
59,776 KB
testcase_03 AC 58 ms
66,048 KB
testcase_04 AC 44 ms
58,368 KB
testcase_05 AC 50 ms
60,928 KB
testcase_06 AC 54 ms
64,000 KB
testcase_07 AC 50 ms
61,056 KB
testcase_08 AC 47 ms
58,496 KB
testcase_09 AC 50 ms
60,032 KB
testcase_10 AC 57 ms
64,512 KB
testcase_11 AC 49 ms
60,800 KB
testcase_12 AC 51 ms
61,056 KB
testcase_13 AC 60 ms
65,920 KB
testcase_14 AC 58 ms
64,768 KB
testcase_15 AC 44 ms
59,392 KB
testcase_16 AC 46 ms
59,520 KB
testcase_17 AC 52 ms
62,592 KB
testcase_18 AC 54 ms
63,488 KB
testcase_19 AC 46 ms
59,508 KB
testcase_20 AC 47 ms
59,520 KB
testcase_21 AC 44 ms
58,624 KB
testcase_22 AC 59 ms
65,792 KB
testcase_23 AC 61 ms
67,072 KB
testcase_24 AC 61 ms
66,304 KB
testcase_25 AC 60 ms
66,048 KB
testcase_26 AC 60 ms
65,664 KB
testcase_27 AC 41 ms
52,608 KB
testcase_28 AC 40 ms
52,608 KB
testcase_29 AC 39 ms
51,968 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 101 ms
77,824 KB
testcase_32 AC 84 ms
76,732 KB
testcase_33 AC 275 ms
87,136 KB
testcase_34 AC 590 ms
103,744 KB
testcase_35 AC 955 ms
116,400 KB
testcase_36 AC 900 ms
120,392 KB
testcase_37 AC 769 ms
111,888 KB
testcase_38 AC 697 ms
111,028 KB
testcase_39 AC 186 ms
82,180 KB
testcase_40 AC 156 ms
80,708 KB
testcase_41 AC 101 ms
76,928 KB
testcase_42 AC 980 ms
119,040 KB
testcase_43 AC 732 ms
112,348 KB
testcase_44 AC 738 ms
109,264 KB
testcase_45 AC 1,112 ms
135,112 KB
testcase_46 AC 77 ms
76,416 KB
testcase_47 AC 627 ms
102,908 KB
testcase_48 AC 177 ms
83,456 KB
testcase_49 AC 271 ms
87,744 KB
testcase_50 AC 1,199 ms
135,188 KB
testcase_51 AC 1,269 ms
131,480 KB
testcase_52 AC 1,270 ms
131,956 KB
testcase_53 AC 1,220 ms
131,344 KB
testcase_54 AC 1,237 ms
131,208 KB
testcase_55 AC 1,225 ms
131,744 KB
testcase_56 AC 79 ms
75,480 KB
testcase_57 AC 79 ms
75,368 KB
testcase_58 AC 713 ms
108,944 KB
testcase_59 AC 877 ms
115,192 KB
testcase_60 AC 350 ms
91,612 KB
testcase_61 AC 765 ms
111,196 KB
testcase_62 AC 741 ms
110,832 KB
testcase_63 AC 114 ms
76,544 KB
testcase_64 AC 387 ms
91,392 KB
testcase_65 AC 324 ms
90,112 KB
testcase_66 AC 308 ms
89,136 KB
testcase_67 AC 568 ms
100,060 KB
testcase_68 AC 356 ms
91,284 KB
testcase_69 AC 188 ms
80,716 KB
testcase_70 AC 195 ms
82,016 KB
testcase_71 AC 199 ms
82,100 KB
testcase_72 AC 465 ms
96,212 KB
testcase_73 AC 889 ms
123,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x+1

    N, M = map(int, input().split())
    q = []
    qy = [0] * (M+1)
    ans = [0] * 3
    bit = Bit(M)
    for i in range(1, M+1):
        s, t, y = input().split()
        s = int(s)
        t = int(t)
        if y == 'K':
            qy[i] = 1
        elif y == 'C':
            qy[i] = 2
        q.append((s, 1, i))
        if t+1 <= N:
            q.append((t+1, -1, i))

    q.sort(key=lambda x: x[0])
    i = 1
    for t, flg, j in q:
        while i < t:
            k = bit.lower_bound(1)
            if k != M + 1:
                ans[qy[k]] += 1
            i += 1
        bit.add(j, flg)

    while i < N+1:
        k = bit.lower_bound(1)
        if k != M + 1:
            ans[qy[k]] += 1
        i += 1

    print(*ans)


if __name__ == '__main__':
    main()
0