結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー H3PO4H3PO4
提出日時 2022-01-07 21:45:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,143 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 175,416 KB
最終ジャッジ日時 2024-11-14 08:36:25
合計ジャッジ時間 38,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,684 KB
testcase_01 TLE -
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 AC 38 ms
59,560 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 37 ms
60,336 KB
testcase_21 AC 37 ms
52,996 KB
testcase_22 TLE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

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)
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, 1)
            if S[i + 1] == ")":
                B.add(i, -1)
        else:
            S[i] = "("
            if i > 0 and S[i - 1] == "(":
                B.add(i - 1, -1)
            if S[i + 1] == ")":
                B.add(i, 1)
    else:
        _, l, r = query
        print(B.sum(l - 1, r - 1))
0