結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー tamatotamato
提出日時 2022-01-07 22:45:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 1,950 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 88,264 KB
最終ジャッジ日時 2024-06-30 02:16:52
合計ジャッジ時間 5,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 267 ms
87,664 KB
testcase_02 AC 245 ms
87,612 KB
testcase_03 AC 269 ms
88,016 KB
testcase_04 AC 254 ms
88,032 KB
testcase_05 AC 287 ms
88,264 KB
testcase_06 AC 257 ms
87,892 KB
testcase_07 AC 259 ms
87,524 KB
testcase_08 AC 243 ms
87,644 KB
testcase_09 AC 254 ms
87,784 KB
testcase_10 AC 255 ms
87,528 KB
testcase_11 AC 257 ms
87,520 KB
testcase_12 AC 243 ms
87,736 KB
testcase_13 AC 256 ms
87,756 KB
testcase_14 AC 212 ms
87,648 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 38 ms
52,480 KB
testcase_18 AC 35 ms
52,864 KB
testcase_19 AC 34 ms
52,352 KB
testcase_20 AC 33 ms
51,968 KB
testcase_21 AC 34 ms
52,480 KB
testcase_22 AC 33 ms
52,736 KB
testcase_23 AC 32 ms
52,096 KB
testcase_24 AC 34 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    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

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    N, Q = map(int, input().split())
    bit = Bit(N)
    S = input().rstrip('\n')
    S = list(S)
    for i in range(N - 1):
        if S[i] == "(" and S[i+1] == ")":
            bit.add(i + 1, 1)

    for _ in range(Q):
        q = list(map(int, input().split()))
        if q[0] == 1:
            i = q[1]
            if S[i-1] == "(":
                S[i-1] = ")"
                if i != N:
                    if S[i] == ")":
                        bit.add(i, -1)
                if i != 1:
                    if S[i-2] == "(":
                        bit.add(i-1, 1)
            else:
                S[i-1] = "("
                if i != N:
                    if S[i] == ")":
                        bit.add(i, 1)
                if i != 1:
                    if S[i-2] == "(":
                        bit.add(i-1, -1)
        else:
            l, r = q[1:]
            if l == r:
                print(0)
                continue
            if l == 1:
                print(bit.sum(r - 1))
            else:
                print(bit.sum(r - 1) - bit.sum(l - 1))


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