結果
問題 | No.1802 Range Score Query for Bracket Sequence |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-01-09 23:52:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 642 ms / 2,000 ms |
コード長 | 1,411 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 88,296 KB |
最終ジャッジ日時 | 2024-06-30 02:21:30 |
合計ジャッジ時間 | 9,780 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 KB |
testcase_01 | AC | 497 ms
87,400 KB |
testcase_02 | AC | 534 ms
87,376 KB |
testcase_03 | AC | 526 ms
87,768 KB |
testcase_04 | AC | 595 ms
88,296 KB |
testcase_05 | AC | 507 ms
88,012 KB |
testcase_06 | AC | 502 ms
87,128 KB |
testcase_07 | AC | 508 ms
88,028 KB |
testcase_08 | AC | 524 ms
87,784 KB |
testcase_09 | AC | 534 ms
87,032 KB |
testcase_10 | AC | 533 ms
87,788 KB |
testcase_11 | AC | 549 ms
87,644 KB |
testcase_12 | AC | 527 ms
87,144 KB |
testcase_13 | AC | 604 ms
87,512 KB |
testcase_14 | AC | 642 ms
87,000 KB |
testcase_15 | AC | 41 ms
51,840 KB |
testcase_16 | AC | 40 ms
51,840 KB |
testcase_17 | AC | 40 ms
52,096 KB |
testcase_18 | AC | 41 ms
52,096 KB |
testcase_19 | AC | 40 ms
51,840 KB |
testcase_20 | AC | 38 ms
52,352 KB |
testcase_21 | AC | 36 ms
52,096 KB |
testcase_22 | AC | 37 ms
52,096 KB |
testcase_23 | AC | 39 ms
51,840 KB |
testcase_24 | AC | 36 ms
51,840 KB |
ソースコード
class BIT: def __init__(self, n): self.size = n self.tree = [0]*(n+1) def build(self, list): self.tree[1:] = list.copy() for i in range(self.size+1): j = i + (i & (-i)) if j < self.size+1: self.tree[j] += self.tree[i] def sum(self, i): # [0, i) の要素の総和を返す s = 0 while i>0: s += self.tree[i] i -= i & -i return s # 0 index を 1 index に変更 転倒数を求めるなら1を足していく def add(self, i, x): i += 1 while i <= self.size: self.tree[i] += x i += i & -i n,q = map(int,input().split()) S = list(input()) bit = BIT(n+5) for i in range(n-1): if S[i] == "(" and S[i+1] == ")": bit.add(i+1,1) for i in range(q): l = list(map(int,input().split())) if l[0] == 1: x = l[1]-1 if S[x] == "(": S[x] = ")" if x != n-1 and S[x+1] == ")": bit.add(x+1,-1) if x != 0 and S[x-1] == "(": bit.add(x,1) elif S[x] == ")": S[x] = "(" if x != n-1 and S[x+1] == ")": bit.add(x+1,1) if x != 0 and S[x-1] == "(": bit.add(x,-1) else: _,l,r = l print(bit.sum(r)-bit.sum(l))