結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2019-12-09 23:17:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,730 ms / 2,000 ms
コード長 2,189 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 161,600 KB
最終ジャッジ日時 2024-06-23 08:11:20
合計ジャッジ時間 41,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 52 ms
62,976 KB
testcase_03 AC 68 ms
71,552 KB
testcase_04 AC 48 ms
60,032 KB
testcase_05 AC 65 ms
70,784 KB
testcase_06 AC 72 ms
73,728 KB
testcase_07 AC 67 ms
69,888 KB
testcase_08 AC 51 ms
61,440 KB
testcase_09 AC 59 ms
64,384 KB
testcase_10 AC 73 ms
70,400 KB
testcase_11 AC 61 ms
64,128 KB
testcase_12 AC 71 ms
70,016 KB
testcase_13 AC 80 ms
73,472 KB
testcase_14 AC 77 ms
71,936 KB
testcase_15 AC 45 ms
59,264 KB
testcase_16 AC 53 ms
62,976 KB
testcase_17 AC 57 ms
63,744 KB
testcase_18 AC 66 ms
70,016 KB
testcase_19 AC 55 ms
66,304 KB
testcase_20 AC 51 ms
61,952 KB
testcase_21 AC 52 ms
59,648 KB
testcase_22 AC 86 ms
76,288 KB
testcase_23 AC 85 ms
75,776 KB
testcase_24 AC 87 ms
75,904 KB
testcase_25 AC 89 ms
75,776 KB
testcase_26 AC 85 ms
76,160 KB
testcase_27 AC 48 ms
57,728 KB
testcase_28 AC 45 ms
57,728 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 43 ms
52,480 KB
testcase_31 AC 170 ms
83,200 KB
testcase_32 AC 269 ms
96,256 KB
testcase_33 AC 494 ms
107,776 KB
testcase_34 AC 841 ms
121,812 KB
testcase_35 AC 1,394 ms
151,712 KB
testcase_36 AC 857 ms
121,196 KB
testcase_37 AC 742 ms
115,096 KB
testcase_38 AC 755 ms
111,196 KB
testcase_39 AC 329 ms
95,104 KB
testcase_40 AC 415 ms
101,632 KB
testcase_41 AC 263 ms
91,520 KB
testcase_42 AC 1,072 ms
126,824 KB
testcase_43 AC 682 ms
115,688 KB
testcase_44 AC 1,030 ms
128,800 KB
testcase_45 AC 1,200 ms
138,784 KB
testcase_46 AC 175 ms
85,120 KB
testcase_47 AC 843 ms
123,404 KB
testcase_48 AC 200 ms
84,864 KB
testcase_49 AC 484 ms
102,784 KB
testcase_50 AC 1,241 ms
132,656 KB
testcase_51 AC 1,645 ms
160,956 KB
testcase_52 AC 1,730 ms
161,468 KB
testcase_53 AC 1,684 ms
161,600 KB
testcase_54 AC 1,660 ms
160,956 KB
testcase_55 AC 1,629 ms
161,564 KB
testcase_56 AC 132 ms
104,576 KB
testcase_57 AC 131 ms
104,448 KB
testcase_58 AC 1,301 ms
141,216 KB
testcase_59 AC 1,424 ms
152,080 KB
testcase_60 AC 795 ms
125,616 KB
testcase_61 AC 1,365 ms
134,380 KB
testcase_62 AC 1,320 ms
138,252 KB
testcase_63 AC 177 ms
98,432 KB
testcase_64 AC 830 ms
123,204 KB
testcase_65 AC 709 ms
111,892 KB
testcase_66 AC 675 ms
111,876 KB
testcase_67 AC 1,056 ms
132,484 KB
testcase_68 AC 790 ms
125,336 KB
testcase_69 AC 413 ms
109,056 KB
testcase_70 AC 472 ms
116,992 KB
testcase_71 AC 484 ms
116,992 KB
testcase_72 AC 948 ms
116,384 KB
testcase_73 AC 1,359 ms
137,716 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 != 0:
            bit.add(j, flg)
        else:
            k = bit.bisect_plus(0, 1)
            if k == M+1:
                continue
            ans[qy[k]] += 1

    print(*ans)


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