結果

問題 No.945 YKC饅頭
ユーザー tamatotamato
提出日時 2019-12-09 22:25:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,076 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 164,256 KB
最終ジャッジ日時 2024-06-23 07:06:38
合計ジャッジ時間 38,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 58 ms
63,744 KB
testcase_03 AC 68 ms
73,600 KB
testcase_04 AC 43 ms
59,136 KB
testcase_05 AC 59 ms
70,784 KB
testcase_06 AC 73 ms
75,776 KB
testcase_07 AC 60 ms
69,248 KB
testcase_08 AC 48 ms
61,824 KB
testcase_09 AC 55 ms
64,512 KB
testcase_10 AC 66 ms
71,680 KB
testcase_11 AC 55 ms
64,640 KB
testcase_12 AC 68 ms
71,936 KB
testcase_13 AC 71 ms
73,984 KB
testcase_14 AC 69 ms
72,704 KB
testcase_15 AC 40 ms
53,376 KB
testcase_16 AC 51 ms
63,104 KB
testcase_17 AC 50 ms
62,208 KB
testcase_18 AC 61 ms
71,168 KB
testcase_19 AC 53 ms
68,608 KB
testcase_20 AC 48 ms
61,952 KB
testcase_21 AC 41 ms
58,496 KB
testcase_22 AC 70 ms
76,288 KB
testcase_23 AC 72 ms
76,672 KB
testcase_24 AC 73 ms
76,160 KB
testcase_25 AC 78 ms
76,160 KB
testcase_26 AC 75 ms
76,160 KB
testcase_27 AC 52 ms
65,920 KB
testcase_28 AC 52 ms
66,048 KB
testcase_29 AC 36 ms
52,224 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 161 ms
85,248 KB
testcase_32 AC 312 ms
96,896 KB
testcase_33 AC 512 ms
102,384 KB
testcase_34 AC 717 ms
117,860 KB
testcase_35 AC 1,283 ms
156,072 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 673 ms
120,704 KB
testcase_39 AC 312 ms
96,512 KB
testcase_40 AC 422 ms
103,168 KB
testcase_41 AC 282 ms
92,032 KB
testcase_42 AC 998 ms
127,968 KB
testcase_43 WA -
testcase_44 AC 941 ms
125,520 KB
testcase_45 WA -
testcase_46 AC 185 ms
85,632 KB
testcase_47 AC 714 ms
117,316 KB
testcase_48 AC 188 ms
85,888 KB
testcase_49 AC 434 ms
98,956 KB
testcase_50 AC 1,082 ms
136,220 KB
testcase_51 AC 1,455 ms
163,880 KB
testcase_52 AC 1,470 ms
163,748 KB
testcase_53 AC 1,467 ms
163,752 KB
testcase_54 AC 1,424 ms
164,256 KB
testcase_55 AC 1,528 ms
164,216 KB
testcase_56 AC 353 ms
106,240 KB
testcase_57 AC 188 ms
106,240 KB
testcase_58 AC 1,186 ms
146,924 KB
testcase_59 AC 1,356 ms
156,480 KB
testcase_60 AC 713 ms
120,968 KB
testcase_61 AC 1,267 ms
147,024 KB
testcase_62 AC 1,201 ms
147,920 KB
testcase_63 AC 166 ms
99,968 KB
testcase_64 AC 736 ms
115,468 KB
testcase_65 AC 692 ms
123,936 KB
testcase_66 AC 632 ms
118,080 KB
testcase_67 AC 944 ms
126,724 KB
testcase_68 AC 727 ms
120,432 KB
testcase_69 AC 380 ms
111,104 KB
testcase_70 AC 458 ms
116,224 KB
testcase_71 AC 474 ms
116,096 KB
testcase_72 AC 942 ms
132,432 KB
testcase_73 AC 1,325 ms
139,772 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


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