結果
問題 | No.877 Range ReLU Query |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-06 07:26:01 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,631 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 151,684 KB |
最終ジャッジ日時 | 2024-05-10 04:31:54 |
合計ジャッジ時間 | 6,998 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 45 ms
60,032 KB |
testcase_05 | RE | - |
testcase_06 | AC | 57 ms
63,744 KB |
testcase_07 | AC | 53 ms
62,592 KB |
testcase_08 | AC | 75 ms
73,216 KB |
testcase_09 | AC | 48 ms
60,160 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 699 ms
151,684 KB |
testcase_16 | AC | 664 ms
147,464 KB |
testcase_17 | AC | 667 ms
149,704 KB |
testcase_18 | AC | 680 ms
147,008 KB |
testcase_19 | AC | 552 ms
137,196 KB |
testcase_20 | AC | 600 ms
148,388 KB |
ソースコード
class Bit: def __init__(self, n): self.size = n self.n0 = 1 << (n.bit_length() - 1) self.tree = [0] * (n + 1) def range_sum(self, l, r): return self.sum(r - 1) - self.sum(l - 1) def sum(self, i): i += 1 s = 0 while i > 0: s += self.tree[i] i -= i & -i return s def get(self, i): return self.sum(i) - self.sum(i - 1) def add(self, i, x): i += 1 while i <= self.size: self.tree[i] += x i += i & -i def lower_bound(self, x): pos = 0 plus = self.n0 while plus > 0: if pos + plus <= self.size and self.tree[pos + plus] < x: x -= self.tree[pos + plus] pos += plus plus //= 2 return pos n, Q = map(int, input().split()) A = list(map(int, input().split())) se = set(A) L = [[] for _ in range(n)] R = [[] for _ in range(n)] X = [0] * n for i in range(Q): _, l, r, X[i] = map(int, input().split()) L[l - 1].append(i) R[r - 1].append(i) se.add(X[i]) lst = sorted(se) dic = {l:i for i, l in enumerate(lst)} le = len(lst) + 1 tot = Bit(le) cnt = Bit(le) ans = [0] * Q for i, a in enumerate(A): for j in L[i]: x = dic[X[j]] tmp = tot.range_sum(x + 1, le) - cnt.range_sum(x + 1, le) * X[j] ans[j] -= tmp cnt.add(dic[a], 1) tot.add(dic[a], a) for j in R[i]: x = dic[X[j]] tmp = tot.range_sum(x + 1, le) - cnt.range_sum(x + 1, le) * X[j] ans[j] += tmp print(*ans, sep="\n")