結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2019-12-09 22:37:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,247 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 161,704 KB
最終ジャッジ日時 2024-06-23 07:21:17
合計ジャッジ時間 46,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 57 ms
63,616 KB
testcase_03 AC 78 ms
73,216 KB
testcase_04 AC 49 ms
59,648 KB
testcase_05 AC 67 ms
70,144 KB
testcase_06 AC 82 ms
76,032 KB
testcase_07 AC 67 ms
69,120 KB
testcase_08 AC 53 ms
61,696 KB
testcase_09 AC 62 ms
64,384 KB
testcase_10 AC 71 ms
71,040 KB
testcase_11 AC 59 ms
64,384 KB
testcase_12 AC 71 ms
71,552 KB
testcase_13 AC 76 ms
74,112 KB
testcase_14 AC 74 ms
72,448 KB
testcase_15 AC 44 ms
53,376 KB
testcase_16 AC 56 ms
62,848 KB
testcase_17 AC 57 ms
62,080 KB
testcase_18 AC 71 ms
70,656 KB
testcase_19 AC 61 ms
68,608 KB
testcase_20 AC 55 ms
61,440 KB
testcase_21 AC 47 ms
58,752 KB
testcase_22 AC 84 ms
75,648 KB
testcase_23 AC 85 ms
75,776 KB
testcase_24 AC 85 ms
75,904 KB
testcase_25 AC 86 ms
75,776 KB
testcase_26 AC 82 ms
75,904 KB
testcase_27 AC 58 ms
65,408 KB
testcase_28 AC 61 ms
65,664 KB
testcase_29 AC 42 ms
52,096 KB
testcase_30 AC 42 ms
52,480 KB
testcase_31 AC 202 ms
83,840 KB
testcase_32 AC 366 ms
97,152 KB
testcase_33 AC 604 ms
108,416 KB
testcase_34 AC 887 ms
121,788 KB
testcase_35 AC 1,560 ms
152,196 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 713 ms
110,160 KB
testcase_39 AC 380 ms
95,844 KB
testcase_40 AC 469 ms
102,144 KB
testcase_41 AC 320 ms
92,332 KB
testcase_42 AC 1,163 ms
126,272 KB
testcase_43 WA -
testcase_44 AC 1,127 ms
129,068 KB
testcase_45 WA -
testcase_46 AC 230 ms
85,504 KB
testcase_47 AC 901 ms
123,408 KB
testcase_48 AC 214 ms
84,760 KB
testcase_49 AC 525 ms
103,296 KB
testcase_50 AC 1,255 ms
131,668 KB
testcase_51 AC 1,814 ms
160,920 KB
testcase_52 AC 1,743 ms
161,704 KB
testcase_53 AC 1,777 ms
160,936 KB
testcase_54 AC 1,781 ms
160,924 KB
testcase_55 AC 1,831 ms
161,548 KB
testcase_56 AC 423 ms
106,240 KB
testcase_57 AC 212 ms
105,984 KB
testcase_58 AC 1,417 ms
141,228 KB
testcase_59 AC 1,608 ms
151,980 KB
testcase_60 AC 915 ms
126,212 KB
testcase_61 AC 1,468 ms
134,956 KB
testcase_62 AC 1,454 ms
138,748 KB
testcase_63 AC 193 ms
99,968 KB
testcase_64 AC 927 ms
124,660 KB
testcase_65 AC 778 ms
113,568 KB
testcase_66 AC 764 ms
112,412 KB
testcase_67 AC 1,181 ms
133,016 KB
testcase_68 AC 988 ms
125,792 KB
testcase_69 AC 439 ms
110,336 KB
testcase_70 AC 548 ms
119,040 KB
testcase_71 AC 561 ms
118,656 KB
testcase_72 AC 1,079 ms
117,708 KB
testcase_73 AC 1,502 ms
138,132 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(N)
    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 == N+1:
                continue
            ans[qy[k]] += 1

    print(*ans)


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