結果
問題 | No.1441 MErGe |
ユーザー | c-yan |
提出日時 | 2021-03-28 22:33:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,753 bytes |
コンパイル時間 | 470 ms |
コンパイル使用メモリ | 82,168 KB |
実行使用メモリ | 194,240 KB |
最終ジャッジ日時 | 2024-11-29 09:26:08 |
合計ジャッジ時間 | 33,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,856 KB |
testcase_01 | AC | 41 ms
155,264 KB |
testcase_02 | AC | 41 ms
60,672 KB |
testcase_03 | AC | 88 ms
76,928 KB |
testcase_04 | AC | 98 ms
81,792 KB |
testcase_05 | AC | 142 ms
194,240 KB |
testcase_06 | AC | 148 ms
82,944 KB |
testcase_07 | AC | 147 ms
78,080 KB |
testcase_08 | AC | 387 ms
86,016 KB |
testcase_09 | AC | 394 ms
84,992 KB |
testcase_10 | AC | 564 ms
89,600 KB |
testcase_11 | AC | 525 ms
88,576 KB |
testcase_12 | AC | 560 ms
89,856 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 982 ms
102,912 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
ソースコード
from sys import setrecursionlimit, stdin from itertools import accumulate from bisect import bisect_left class RangeAddSegmentTree: def __init__(self, size): self._size = size t = 1 while t < size: t *= 2 self._offset = t - 1 self._data = [0] * (t * 2 - 1) def __len__(self): return self._size def range_add(self, start, stop, x): data = self._data l = start + self._offset r = stop + self._offset while l < r: if l & 1 == 0: data[l] += x if r & 1 == 0: data[r - 1] += x l = l // 2 r = (r - 1) // 2 def __setitem__(self, key, val): self.range_add(key, key + 1, val - self[key]) def __getitem__(self, key): data = self._data i = key + self._offset result = data[i] while i > 0: i = (i - 1) // 2 result += data[i] return result def __iter__(self): for i in range(self._size): yield self[i] readline = stdin.readline setrecursionlimit(10 ** 6) N, Q = map(int, readline().split()) A = list(map(int, readline().split())) A = list(accumulate(A)) st = RangeAddSegmentTree(N + 1) for i in range(N + 1): st.range_add(i, i + 1, i) result = [] for _ in range(Q): T, l, r = map(int, readline().split()) l, r = l - 1, r - 1 x = bisect_left(st, l) y = bisect_left(st, r + 1) - 1 if T == 1: for j in range(x, y + 1): st[j] = st[x] st.range_add(y + 1, N + 1, l - r) elif T == 2: if x != 0: result.append(A[y] - A[x - 1]) else: result.append(A[y]) print(*result, sep='\n')