結果
問題 | No.789 範囲の合計 |
ユーザー | rlangevin |
提出日時 | 2023-10-20 18:14:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,561 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 82,524 KB |
実行使用メモリ | 125,260 KB |
最終ジャッジ日時 | 2024-09-20 13:52:27 |
合計ジャッジ時間 | 5,037 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 41 ms
53,632 KB |
testcase_02 | AC | 326 ms
120,220 KB |
testcase_03 | AC | 270 ms
98,712 KB |
testcase_04 | AC | 338 ms
117,480 KB |
testcase_05 | AC | 345 ms
119,964 KB |
testcase_06 | AC | 314 ms
119,892 KB |
testcase_07 | AC | 258 ms
101,272 KB |
testcase_08 | AC | 279 ms
101,496 KB |
testcase_09 | AC | 271 ms
100,464 KB |
testcase_10 | AC | 367 ms
125,260 KB |
testcase_11 | AC | 333 ms
117,304 KB |
testcase_12 | AC | 326 ms
117,412 KB |
testcase_13 | AC | 40 ms
54,272 KB |
testcase_14 | AC | 39 ms
53,632 KB |
ソースコード
class Fenwick_Tree: def __init__(self, n): self._n = n self.data = [0] * n def add(self, p, x): assert 0 <= p < self._n p += 1 while p <= self._n: self.data[p - 1] += x p += p & -p def sum(self, l, r): assert 0 <= l <= r <= self._n return self._sum(r) - self._sum(l) def _sum(self, r): s = 0 while r > 0: s += self.data[r - 1] r -= r & -r return s def get(self, k): k += 1 x, r = 0, 1 while r < self._n: r <<= 1 len = r while len: if x + len - 1 < self._n: if self.data[x + len - 1] < k: k -= self.data[x + len - 1] x += len len >>= 1 return x from bisect import * from copy import deepcopy def compress(lst): """ B: lstを座圧したリスト D: 元の値からindexを取得する辞書 vals: indexから元の値を取得するリスト """ vals = list(set(deepcopy(lst))) vals.sort() for i in range(len(lst)): ind = bisect_left(vals, lst[i]) lst[i] = ind return lst, vals N = int(input()) Q = [] for i in range(N): Q.extend(list(map(int, input().split()))) Q, vals = compress(Q) T = Fenwick_Tree(len(vals)) ans = 0 for i in range(N): q, x, y = Q[3 * i], Q[3 * i + 1], Q[3 * i + 2] if q == 0: T.add(x, Q[3*i+2]) else: ans += T.sum(x, y + 1) print(ans)