結果

問題 No.945 YKC饅頭
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-03-10 19:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 1,899 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,120 KB
最終ジャッジ日時 2024-09-14 20:27:46
合計ジャッジ時間 29,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 75 ms
68,608 KB
testcase_03 AC 110 ms
76,032 KB
testcase_04 AC 56 ms
61,696 KB
testcase_05 AC 114 ms
76,416 KB
testcase_06 AC 114 ms
75,904 KB
testcase_07 AC 108 ms
75,904 KB
testcase_08 AC 72 ms
68,096 KB
testcase_09 AC 77 ms
69,120 KB
testcase_10 AC 121 ms
76,544 KB
testcase_11 AC 94 ms
75,904 KB
testcase_12 AC 122 ms
76,032 KB
testcase_13 AC 124 ms
76,032 KB
testcase_14 AC 119 ms
76,416 KB
testcase_15 AC 58 ms
60,928 KB
testcase_16 AC 80 ms
70,272 KB
testcase_17 AC 83 ms
70,656 KB
testcase_18 AC 119 ms
76,032 KB
testcase_19 AC 108 ms
76,160 KB
testcase_20 AC 67 ms
65,536 KB
testcase_21 AC 59 ms
62,464 KB
testcase_22 AC 139 ms
77,184 KB
testcase_23 AC 134 ms
76,416 KB
testcase_24 AC 134 ms
76,288 KB
testcase_25 AC 135 ms
76,032 KB
testcase_26 AC 130 ms
76,032 KB
testcase_27 AC 94 ms
76,160 KB
testcase_28 AC 87 ms
73,728 KB
testcase_29 AC 46 ms
53,760 KB
testcase_30 AC 46 ms
53,888 KB
testcase_31 AC 251 ms
79,968 KB
testcase_32 AC 338 ms
84,068 KB
testcase_33 AC 478 ms
88,500 KB
testcase_34 AC 436 ms
83,640 KB
testcase_35 AC 608 ms
88,284 KB
testcase_36 AC 403 ms
80,072 KB
testcase_37 AC 375 ms
79,412 KB
testcase_38 AC 410 ms
81,252 KB
testcase_39 AC 348 ms
83,576 KB
testcase_40 AC 438 ms
88,300 KB
testcase_41 AC 388 ms
84,848 KB
testcase_42 AC 515 ms
84,176 KB
testcase_43 AC 330 ms
79,060 KB
testcase_44 AC 534 ms
87,476 KB
testcase_45 AC 564 ms
83,476 KB
testcase_46 AC 315 ms
83,540 KB
testcase_47 AC 437 ms
84,248 KB
testcase_48 AC 258 ms
79,584 KB
testcase_49 AC 388 ms
84,000 KB
testcase_50 AC 604 ms
85,072 KB
testcase_51 AC 683 ms
89,016 KB
testcase_52 AC 699 ms
90,196 KB
testcase_53 AC 683 ms
89,168 KB
testcase_54 AC 673 ms
89,156 KB
testcase_55 AC 675 ms
89,176 KB
testcase_56 AC 273 ms
87,424 KB
testcase_57 AC 185 ms
88,064 KB
testcase_58 AC 809 ms
91,888 KB
testcase_59 AC 810 ms
90,568 KB
testcase_60 AC 645 ms
91,264 KB
testcase_61 AC 850 ms
92,120 KB
testcase_62 AC 750 ms
91,420 KB
testcase_63 AC 240 ms
88,672 KB
testcase_64 AC 547 ms
90,556 KB
testcase_65 AC 542 ms
89,708 KB
testcase_66 AC 524 ms
89,780 KB
testcase_67 AC 746 ms
91,552 KB
testcase_68 AC 550 ms
89,312 KB
testcase_69 AC 426 ms
90,052 KB
testcase_70 AC 433 ms
90,044 KB
testcase_71 AC 430 ms
90,196 KB
testcase_72 AC 629 ms
91,160 KB
testcase_73 AC 678 ms
90,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def segfunc(x, y):
    return min(x,y)

ide_ele = (1,-1)


class SegTree:
    """
    Segment Tree
    """

    def __init__(self, init_val, segfunc, ide_ele):
        """
        初期化

        init_val: 配列の初期値
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新

        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る

        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res

N,M = map(int,input().split())
A = [(-1,i) for i in range(N)]
T = SegTree(A,segfunc,ide_ele)
from collections import defaultdict
d = defaultdict(lambda:0)

for i in range(M):
    
    l,r,t = input().split()
    l = int(l)
    r = int(r)
    
    l -= 1
    f,x = T.query(l,r)
    if f == 1:
        continue
    while f == -1:
        T.update(x,(1,-1))
        d[t] += 1
        f,x = T.query(l,r)
print(d['Y'],d['K'],d['C'])
0