結果
問題 | No.1096 Range Sums |
ユーザー | c-yan |
提出日時 | 2020-06-27 06:56:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,143 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 58,692 KB |
最終ジャッジ日時 | 2024-07-05 08:49:45 |
合計ジャッジ時間 | 14,028 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
ソースコード
from itertools import accumulate class SparseTable(): _data = None _lookup = None _f = None def __init__(self, a): data = [] lookup = [] f = min b = 0 while (1 << b) <= len(a): b += 1 for _ in range(b): data.append([0] * (1 << b)) data[0][:len(a)] = a for i in range(1, b): j = 0 di = data[i] di1 = data[i - 1] while j + (1 << i) <= (1 << b): di[j] = f(di1[j], di1[j + (1 << (i - 1))]) j += 1 lookup = [0] * (len(a) + 1) for i in range(2, len(lookup)): lookup[i] = lookup[i >> 1] + 1 self._data = data self._lookup = lookup self._f = f def query(self, start, stop): b = self._lookup[stop - start] db = self._data[b] return self._f(db[start], db[stop - (1 << b)]) N, *A = map(int, open(0).read().split()) a = list(accumulate(A)) st = SparseTable(a) result = 0 result += st.query(0, N) for i in range(1, N): result += st.query(i, N) - a[i - 1] * (N - i) print(result)