結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー H3PO4H3PO4
提出日時 2022-01-07 22:02:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,632 KB
最終ジャッジ日時 2024-06-30 02:15:39
合計ジャッジ時間 9,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 556 ms
87,020 KB
testcase_02 AC 475 ms
87,364 KB
testcase_03 AC 519 ms
87,632 KB
testcase_04 AC 556 ms
87,128 KB
testcase_05 AC 481 ms
87,120 KB
testcase_06 AC 492 ms
87,124 KB
testcase_07 AC 573 ms
87,212 KB
testcase_08 AC 507 ms
87,272 KB
testcase_09 AC 575 ms
87,008 KB
testcase_10 AC 575 ms
87,136 KB
testcase_11 AC 559 ms
87,136 KB
testcase_12 AC 471 ms
87,156 KB
testcase_13 AC 505 ms
87,116 KB
testcase_14 AC 610 ms
86,784 KB
testcase_15 AC 32 ms
52,608 KB
testcase_16 AC 32 ms
52,096 KB
testcase_17 AC 32 ms
51,840 KB
testcase_18 AC 32 ms
52,352 KB
testcase_19 AC 31 ms
52,480 KB
testcase_20 AC 31 ms
52,096 KB
testcase_21 AC 32 ms
51,712 KB
testcase_22 AC 32 ms
52,608 KB
testcase_23 AC 30 ms
52,224 KB
testcase_24 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    """1-indexed"""

    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 sum(self, i, j):
        """閉区間[i, j]"""
        return self._sum(j) - self._sum(i - 1)

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


N, Q = map(int, input().split())
S = list(input())
B = Bit(N - 1)
for i in range(N - 1):
    if S[i] == "(" and S[i + 1] == ")":
        B.add(i + 1, 1)
for _ in range(Q):
    query = tuple(map(int, input().split()))
    if query[0] == 1:
        i = query[1] - 1
        if S[i] == "(":
            S[i] = ")"
            if i > 0 and S[i - 1] == "(":
                B.add(i, 1)
            if i < N - 1 and S[i + 1] == ")":
                B.add(i + 1, -1)
        else:
            S[i] = "("
            if i > 0 and S[i - 1] == "(":
                B.add(i, -1)
            if i < N - 1 and S[i + 1] == ")":
                B.add(i + 1, 1)
    else:
        _, l, r = query
        print(B.sum(l, r - 1))
0