結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー titiatitia
提出日時 2022-01-07 22:47:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,171 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,184 KB
最終ジャッジ日時 2024-06-30 02:17:50
合計ジャッジ時間 17,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 1,164 ms
13,804 KB
testcase_02 AC 1,150 ms
14,060 KB
testcase_03 AC 1,170 ms
13,928 KB
testcase_04 AC 1,132 ms
13,932 KB
testcase_05 AC 1,160 ms
14,064 KB
testcase_06 AC 1,151 ms
14,056 KB
testcase_07 AC 1,145 ms
14,060 KB
testcase_08 AC 1,171 ms
14,060 KB
testcase_09 AC 1,152 ms
14,056 KB
testcase_10 AC 1,145 ms
13,932 KB
testcase_11 AC 990 ms
14,184 KB
testcase_12 AC 989 ms
13,928 KB
testcase_13 AC 1,005 ms
13,932 KB
testcase_14 AC 1,076 ms
14,060 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())
S=list(input().strip())

LEN=N

BIT=[0]*(LEN+1) # 1-indexedなtree. 配列BITの長さはLEN+1にしていることに注意。

def update(v,w): # index vにwを加える
    while v<=LEN:
        BIT[v]+=w
        v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v): # [1,v]の区間の和を求める
    if v<=0:
        return 0
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ
    return ANS

for i in range(1,N):
    if S[i-1]=="(" and S[i]==")":
        update(i,1)
        
for i in range(Q):
    X=list(map(int,input().split()))

    if X[0]==1:
        y=X[1]-1

        if S[y]=="(":
            if y+1<N and S[y+1]==")":
                update(y+1,-1)

            if y-1>=0 and S[y-1]=="(":
                update(y,1)
            S[y]=")"

        else:
            if y+1<N and S[y+1]==")":
                update(y+1,1)

            if y-1>=0 and S[y-1]=="(":
                update(y,-1)
            S[y]="("
    else:
        y,z=X[1],X[2]
        y-=1
        z-=1

        if S[y]==")":
            print(getvalue(z)-getvalue(y))
        else:
            print(getvalue(z)-getvalue(y-1))
            

        
            
            
    
0