結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2019-12-09 23:14:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,725 ms / 2,000 ms
コード長 2,299 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 154,872 KB
最終ジャッジ日時 2024-06-23 08:07:39
合計ジャッジ時間 42,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 53 ms
62,976 KB
testcase_03 AC 74 ms
72,704 KB
testcase_04 AC 50 ms
59,648 KB
testcase_05 AC 66 ms
70,528 KB
testcase_06 AC 78 ms
75,648 KB
testcase_07 AC 66 ms
69,632 KB
testcase_08 AC 51 ms
61,952 KB
testcase_09 AC 57 ms
63,616 KB
testcase_10 AC 69 ms
71,040 KB
testcase_11 AC 56 ms
64,256 KB
testcase_12 AC 67 ms
70,400 KB
testcase_13 AC 74 ms
73,728 KB
testcase_14 AC 72 ms
71,808 KB
testcase_15 AC 46 ms
59,008 KB
testcase_16 AC 55 ms
63,232 KB
testcase_17 AC 60 ms
64,896 KB
testcase_18 AC 68 ms
68,992 KB
testcase_19 AC 57 ms
65,536 KB
testcase_20 AC 59 ms
62,336 KB
testcase_21 AC 49 ms
59,776 KB
testcase_22 AC 81 ms
75,776 KB
testcase_23 AC 82 ms
75,904 KB
testcase_24 AC 80 ms
75,776 KB
testcase_25 AC 84 ms
75,776 KB
testcase_26 AC 82 ms
75,648 KB
testcase_27 AC 46 ms
58,240 KB
testcase_28 AC 46 ms
57,728 KB
testcase_29 AC 40 ms
52,480 KB
testcase_30 AC 40 ms
52,480 KB
testcase_31 AC 170 ms
83,072 KB
testcase_32 AC 257 ms
93,184 KB
testcase_33 AC 518 ms
107,648 KB
testcase_34 AC 844 ms
120,752 KB
testcase_35 AC 1,438 ms
138,540 KB
testcase_36 AC 817 ms
119,128 KB
testcase_37 AC 782 ms
112,944 KB
testcase_38 AC 787 ms
115,064 KB
testcase_39 AC 340 ms
93,344 KB
testcase_40 AC 430 ms
97,964 KB
testcase_41 AC 252 ms
92,544 KB
testcase_42 AC 1,198 ms
135,096 KB
testcase_43 AC 682 ms
112,840 KB
testcase_44 AC 1,005 ms
123,824 KB
testcase_45 AC 1,192 ms
128,812 KB
testcase_46 AC 195 ms
85,248 KB
testcase_47 AC 896 ms
122,104 KB
testcase_48 AC 214 ms
83,968 KB
testcase_49 AC 481 ms
102,016 KB
testcase_50 AC 1,271 ms
132,164 KB
testcase_51 AC 1,725 ms
154,012 KB
testcase_52 AC 1,704 ms
154,236 KB
testcase_53 AC 1,702 ms
154,488 KB
testcase_54 AC 1,668 ms
154,356 KB
testcase_55 AC 1,637 ms
154,872 KB
testcase_56 AC 133 ms
104,576 KB
testcase_57 AC 134 ms
104,320 KB
testcase_58 AC 1,371 ms
143,876 KB
testcase_59 AC 1,442 ms
138,432 KB
testcase_60 AC 813 ms
111,872 KB
testcase_61 AC 1,447 ms
144,972 KB
testcase_62 AC 1,387 ms
143,052 KB
testcase_63 AC 186 ms
100,480 KB
testcase_64 AC 866 ms
111,796 KB
testcase_65 AC 807 ms
116,864 KB
testcase_66 AC 762 ms
117,120 KB
testcase_67 AC 1,169 ms
130,380 KB
testcase_68 AC 798 ms
112,128 KB
testcase_69 AC 401 ms
105,688 KB
testcase_70 AC 468 ms
109,528 KB
testcase_71 AC 462 ms
110,008 KB
testcase_72 AC 931 ms
122,372 KB
testcase_73 AC 1,433 ms
140,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.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

    # i+1番目からR番目まで足すとt以上となるような最小のRを返す
    def bisect_plus(self, i, t):
        L = i
        R = self.size
        R_prev = R
        sum_i = self.sum(i)
        while True:
            range_sum = self.sum(R) - sum_i
            if range_sum < t:
                if R == self.size:
                    return self.size + 1
                L, R = R, R_prev
            else:
                R_prev = R
                R = (L + R + 1) // 2
                if R == R_prev:
                    return R

    # L番目からi-1番目まで足すとt以上となるような最小のLを返す
    def bisect_minus(self, i, t):
        L = 1
        R = i
        L_prev = L
        sum_i = self.sum(i - 1)
        while True:
            range_sum = sum_i - self.sum(L - 1)
            if range_sum < t:
                if L == 1:
                    return 0
                L, R = L_prev, L
            else:
                L_prev = L
                L = (L + R) // 2
                if L == L_prev:
                    return L

def main():
    N, M = map(int, input().split())
    q = []
    qy = [0] * (M+1)
    ans = [0] * 3
    bit = Bit(M)
    K, C = ord('K'), ord('C')
    for i in range(1, M+1):
        s, t, y = input().split()
        s = int(s)
        t = int(t)
        y = ord(y)
        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))
    for i in range(1, N+1):
        q.append((i, 0, 0))

    q.sort(key=lambda x: x[0])
    for i, flg, j in q:
        if flg == 1:
            bit.add(j, 1)
        elif flg == -1:
            bit.add(j, -1)
        elif flg == 0:
            k = bit.bisect_plus(0, 1)
            if k == M+1:
                continue
            ans[qy[k]] += 1

    print(*ans)


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