結果
問題 | No.789 範囲の合計 |
ユーザー | rlangevin |
提出日時 | 2023-03-28 16:47:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,579 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 33,888 KB |
最終ジャッジ日時 | 2024-09-20 06:29:27 |
合計ジャッジ時間 | 10,921 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 27 ms
10,880 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 677 ms
17,924 KB |
testcase_04 | AC | 995 ms
28,328 KB |
testcase_05 | AC | 934 ms
28,488 KB |
testcase_06 | AC | 962 ms
28,432 KB |
testcase_07 | AC | 667 ms
18,640 KB |
testcase_08 | AC | 822 ms
25,504 KB |
testcase_09 | AC | 835 ms
25,036 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 942 ms
28,216 KB |
testcase_12 | AC | 933 ms
28,348 KB |
testcase_13 | AC | 29 ms
11,008 KB |
testcase_14 | AC | 28 ms
11,008 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から元の値を取得するリスト """ B = [] vals = deepcopy(lst) vals = list(set(vals)) vals.sort() for i in range(len(lst)): ind = bisect_left(vals, lst[i]) B.append(ind) return B, 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, y) else: ans += T.sum(x, y + 1) print(ans)