結果
問題 | No.1802 Range Score Query for Bracket Sequence |
ユーザー | NatsubiSogan |
提出日時 | 2021-11-20 00:31:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,857 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 92,424 KB |
最終ジャッジ日時 | 2024-11-14 08:05:54 |
合計ジャッジ時間 | 9,983 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,412 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 38 ms
52,444 KB |
testcase_16 | AC | 38 ms
52,956 KB |
testcase_17 | WA | - |
testcase_18 | AC | 39 ms
52,548 KB |
testcase_19 | AC | 38 ms
52,544 KB |
testcase_20 | AC | 37 ms
53,572 KB |
testcase_21 | AC | 38 ms
53,248 KB |
testcase_22 | AC | 38 ms
53,416 KB |
testcase_23 | AC | 38 ms
53,008 KB |
testcase_24 | AC | 38 ms
53,396 KB |
ソースコード
class BinaryIndexedTree(): def __init__(self, n: int) -> None: self.n = 1 << (n.bit_length()) self.BIT = [0] * (self.n + 1) def build(self, init_lis: list) -> None: for i, v in enumerate(init_lis): self.add(i, v) def add(self, i: int, x: int) -> None: i += 1 while i <= self.n: self.BIT[i] += x i += i & -i def sum(self, l: int, r: int) -> int: return self._sum(r) - self._sum(l) def _sum(self, i: int) -> int: res = 0 while i > 0: res += self.BIT[i] i -= i & -i return res n, q = map(int, input().split()) s = input() lis = [] for i in range(n): if i + 1 < n and s[i] == "(" and s[i + 1] == ")": lis.append(1) # () の ( の方を管理するため else: lis.append(0) BIT = BinaryIndexedTree(n) BIT.build(lis) for _ in range(q): t, *Query = map(int, input().split()) if t == 1: i = Query[0] i -= 1 if lis[i] == 0: # i 文字目が ) のとき lis[i] = 1 # ( に変更 if i - 1 >= 0 and lis[i - 1] == 1: # i - 1 文字目が ( であったとき BIT.add(i - 1, -1) # () が 1 つ減るので、i - 1 番目から 1 を引く if i + 1 < n and lis[i + 1] == 0: # i + 1 文字目が ) であったとき BIT.add(i, 1) # () が 1 つ増えるので、i 番目の場所に記録しておく else: # i 文字目が ( のとき lis[i] = 0 # ) に変更 if i + 1 < n and lis[i + 1] == 0: # i + 1 文字目が ) であったとき BIT.add(i, -1) # () が 1 つ減るので、i 番目から 1 を引く if i - 1 >= 0 and lis[i - 1] == 1: # i - 1 文字目が ( であったとき BIT.add(i - 1, 1) # () が 1 つ増えるので、i - 1 番目の場所に記録しておく else: l, r = Query l -= 1; r -= 1 print(BIT.sum(l, r)) # l 文字目から r 文字目まで見ているが、() の位置は ( の方で管理しているので、a[l]+a[l+1]+...+a[r-1] でいい