結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー suosuo
提出日時 2022-01-07 22:11:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 90,952 KB
最終ジャッジ日時 2024-06-30 02:16:10
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 478 ms
90,752 KB
testcase_02 AC 486 ms
90,880 KB
testcase_03 AC 469 ms
90,624 KB
testcase_04 AC 467 ms
90,804 KB
testcase_05 AC 475 ms
90,752 KB
testcase_06 AC 472 ms
90,752 KB
testcase_07 AC 472 ms
90,624 KB
testcase_08 AC 518 ms
90,496 KB
testcase_09 AC 486 ms
90,952 KB
testcase_10 AC 477 ms
90,944 KB
testcase_11 AC 490 ms
90,880 KB
testcase_12 AC 532 ms
90,772 KB
testcase_13 AC 462 ms
90,368 KB
testcase_14 AC 560 ms
90,488 KB
testcase_15 AC 33 ms
52,352 KB
testcase_16 AC 31 ms
52,224 KB
testcase_17 AC 31 ms
52,480 KB
testcase_18 AC 31 ms
52,480 KB
testcase_19 AC 31 ms
52,480 KB
testcase_20 AC 31 ms
52,608 KB
testcase_21 AC 31 ms
52,224 KB
testcase_22 AC 32 ms
52,096 KB
testcase_23 AC 32 ms
52,224 KB
testcase_24 AC 31 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
  def __init__(self,size):
    self.size = size
    self.tree = [0] * (size+1)
    
  def add(self,i,x):
    while i <= self.size:
      self.tree[i] += x
      i += i & -i
    return
  
  def ac(self,i):
    res = 0
    while i > 0:
      res += self.tree[i]
      i -= i & -i
    return res

n,q = map(int,input().split())
s = input()
l = []
for i in s:
    if i == '(':
        l.append(0)
    else:
        l.append(1)
bit = BIT(n)
for i in range(n-1):
    if l[i] == 0 and l[i+1] == 1:
        bit.add(i+1,1)
for i in range(q):
    t = list(map(int,input().split()))
    if t[0] == 1:
        ind = t[1]-1
        l[ind] = (l[ind]+1)%2
        if ind > 0:
            if l[ind] == 1 and l[ind-1] == 0:
                bit.add(ind,1)
            elif l[ind] == l[ind-1] == 0:
                bit.add(ind,-1)
        if ind < n-1:
            if l[ind] == 0 and l[ind+1] == 1:
                bit.add(ind+1,1)
            elif l[ind] == l[ind+1] == 1:
                bit.add(ind+1,-1)
    else:
        left,right = t[1],t[2]
        print(bit.ac(right-1) - bit.ac(left-1))
0