結果
問題 | No.876 Range Compress Query |
ユーザー | maspy |
提出日時 | 2020-03-21 04:04:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,070 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 24,968 KB |
最終ジャッジ日時 | 2024-05-09 17:42:38 |
合計ジャッジ時間 | 6,461 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,880 KB |
testcase_01 | RE | - |
testcase_02 | AC | 27 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | AC | 27 ms
11,008 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 31 ms
11,136 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 1,066 ms
24,452 KB |
testcase_12 | AC | 912 ms
22,364 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines class BinaryIndexedTree(): def __init__(self, seq): self.size = len(seq) self.depth = self.size.bit_length() self.build(seq) def build(self, seq): data = seq size = self.size for i, x in enumerate(data): j = i + (i & (-i)) if j < size: data[j] += data[i] self.data = data def __repr__(self): return self.data.__repr__() def get_sum(self, i): data = self.data s = 0 while i: s += data[i] i -= i & -i return s def add(self, i, x): data = self.data size = self.size while i < size: data[i] += x i += i & -i def find_kth_element(self, k): data = self.data; size = self.size x, sx = 0, 0 dx = 1 << (self.depth) for i in range(self.depth - 1, -1, -1): dx = (1 << i) if x + dx >= size: continue y = x + dx sy = sx + data[y] if sy < k: x, sx = y, sy return x + 1 N, Q = map(int, readline().split()) A = (0,) + tuple(map(int, readline().split())) add = BinaryIndexedTree([0] * (N + 2)) is_equal = [0 if x != y else 1 for x, y in zip(A, A[1:])] is_equal_bit = BinaryIndexedTree(is_equal[:]) for query in readlines(): if query.startswith(b'1'): _, L, R, x = map(int, query.split()) add.add(L, x) add.add(R + 1, -x) for n in (L - 1, R): if is_equal[n]: is_equal[n] = 0 is_equal_bit.add(n, -1) else: if A[n] + add.get_sum(n) == A[n + 1] + add.get_sum(n + 1): is_equal_bit.add(n, 1) else: _, L, R = map(int, query.split()) eq_cnt = is_equal_bit.get_sum(R - 1) - is_equal_bit.get_sum(L - 1) print(R - L + 1 - eq_cnt)