結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー puznekopuzneko
提出日時 2022-01-14 23:31:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 150,464 KB
最終ジャッジ日時 2024-06-30 02:22:08
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 310 ms
138,476 KB
testcase_02 AC 305 ms
138,608 KB
testcase_03 AC 307 ms
138,476 KB
testcase_04 AC 299 ms
138,856 KB
testcase_05 AC 300 ms
138,608 KB
testcase_06 AC 308 ms
138,368 KB
testcase_07 AC 297 ms
138,608 KB
testcase_08 AC 298 ms
138,484 KB
testcase_09 AC 299 ms
138,352 KB
testcase_10 AC 285 ms
138,392 KB
testcase_11 AC 296 ms
138,300 KB
testcase_12 AC 291 ms
138,428 KB
testcase_13 AC 288 ms
138,044 KB
testcase_14 AC 287 ms
150,464 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 41 ms
52,480 KB
testcase_23 AC 42 ms
52,352 KB
testcase_24 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, q = [int(x) for x in stdin.readline().rstrip().split()]
s = stdin.readline().rstrip()
indata = list(map(int, stdin.read().split()))

bitree = [0 for i in range(n+1)]

def btadd(ind,x):
    global bitree
    while ind <= n:
        bitree[ind] += x
        ind += ind & (-ind)

def btsum(ind):
    val = 0
    while ind > 0:
        val += bitree[ind]
        ind -= ind & (-ind)
    return val

bracket = [0 for i in range(n)]
if s[0] == ")":
    bracket[0] = 1
for i in range(1,n):
    if s[i] == ")":
        bracket[i] = 1
        if bracket[i-1] == 0:
            btadd(i+1,1)

offset = 0
for i in range(q):
    a = indata[offset]
    if a == 1:
        x = indata[offset + 1] - 1
        offset += 2
        if bracket[x] == 0:
            if x < n-1:
                if bracket[x+1] == 1:
                    btadd(x+2,-1)
            if x > 0:
                if bracket[x-1] == 0:
                    btadd(x+1,1)
        else:
            if x < n-1:
                if bracket[x+1] == 1:
                    btadd(x+2,1)
            if x > 0:
                if bracket[x-1] == 0:
                    btadd(x+1,-1)
        bracket[x] = bracket[x] ^ 1
    else:
        l, r = indata[offset + 1], indata[offset + 2]
        offset += 3
        ans = btsum(r) - btsum(l)
        print("{}".format(ans))
0