結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2019-12-09 22:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,728 ms / 2,000 ms
コード長 2,247 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 161,464 KB
最終ジャッジ日時 2024-06-23 07:33:19
合計ジャッジ時間 39,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,564 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 53 ms
62,720 KB
testcase_03 AC 68 ms
72,972 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 58 ms
71,296 KB
testcase_06 AC 68 ms
75,904 KB
testcase_07 AC 66 ms
70,016 KB
testcase_08 AC 50 ms
61,568 KB
testcase_09 AC 51 ms
63,872 KB
testcase_10 AC 60 ms
71,552 KB
testcase_11 AC 51 ms
64,384 KB
testcase_12 AC 61 ms
71,680 KB
testcase_13 AC 64 ms
74,028 KB
testcase_14 AC 62 ms
72,772 KB
testcase_15 AC 42 ms
59,648 KB
testcase_16 AC 50 ms
63,744 KB
testcase_17 AC 54 ms
65,280 KB
testcase_18 AC 57 ms
70,400 KB
testcase_19 AC 55 ms
66,048 KB
testcase_20 AC 49 ms
62,080 KB
testcase_21 AC 45 ms
60,028 KB
testcase_22 AC 70 ms
76,132 KB
testcase_23 AC 77 ms
75,884 KB
testcase_24 AC 81 ms
76,544 KB
testcase_25 AC 80 ms
75,908 KB
testcase_26 AC 73 ms
75,708 KB
testcase_27 AC 42 ms
58,368 KB
testcase_28 AC 42 ms
57,984 KB
testcase_29 AC 40 ms
52,352 KB
testcase_30 AC 38 ms
52,736 KB
testcase_31 AC 155 ms
83,316 KB
testcase_32 AC 238 ms
96,256 KB
testcase_33 AC 501 ms
107,776 KB
testcase_34 AC 828 ms
121,556 KB
testcase_35 AC 1,389 ms
151,648 KB
testcase_36 AC 799 ms
121,436 KB
testcase_37 AC 745 ms
114,840 KB
testcase_38 AC 721 ms
111,068 KB
testcase_39 AC 308 ms
95,488 KB
testcase_40 AC 385 ms
101,632 KB
testcase_41 AC 246 ms
91,904 KB
testcase_42 AC 1,045 ms
126,936 KB
testcase_43 AC 675 ms
115,560 KB
testcase_44 AC 1,043 ms
128,836 KB
testcase_45 AC 1,221 ms
139,528 KB
testcase_46 AC 162 ms
85,580 KB
testcase_47 AC 793 ms
123,548 KB
testcase_48 AC 187 ms
84,984 KB
testcase_49 AC 440 ms
103,324 KB
testcase_50 AC 1,182 ms
132,516 KB
testcase_51 AC 1,728 ms
161,068 KB
testcase_52 AC 1,631 ms
161,056 KB
testcase_53 AC 1,649 ms
160,868 KB
testcase_54 AC 1,629 ms
161,404 KB
testcase_55 AC 1,624 ms
161,464 KB
testcase_56 AC 138 ms
104,552 KB
testcase_57 AC 137 ms
104,780 KB
testcase_58 AC 1,291 ms
140,828 KB
testcase_59 AC 1,400 ms
152,364 KB
testcase_60 AC 737 ms
125,696 KB
testcase_61 AC 1,251 ms
134,372 KB
testcase_62 AC 1,315 ms
138,124 KB
testcase_63 AC 165 ms
98,528 KB
testcase_64 AC 822 ms
123,156 KB
testcase_65 AC 673 ms
111,872 KB
testcase_66 AC 655 ms
111,720 KB
testcase_67 AC 1,050 ms
132,352 KB
testcase_68 AC 775 ms
125,104 KB
testcase_69 AC 388 ms
109,408 KB
testcase_70 AC 467 ms
117,112 KB
testcase_71 AC 465 ms
117,144 KB
testcase_72 AC 931 ms
116,352 KB
testcase_73 AC 1,393 ms
137,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    # 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)
    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))
    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