結果
問題 | No.631 Noelちゃんと電車旅行 |
ユーザー | mkawa2 |
提出日時 | 2020-07-09 10:38:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,049 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,288 KB |
最終ジャッジ日時 | 2024-10-06 12:15:31 |
合計ジャッジ時間 | 8,653 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def SI(): return sys.stdin.readline()[:-1] class LazySeg: def __init__(self, aa): inf = 10 ** 16 n = 1 << (len(aa) - 1).bit_length() tree = [-inf] * (2 * n - 1) lazy = [0] * (2 * n - 1) tree[n - 1:n - 1 + len(aa)] = aa for u in range(n - 2, -1, -1): tree[u] = max(tree[u * 2 + 1], tree[u * 2 + 2]) self.tree = tree self.lazy = lazy self.n = n self.inf = inf def prop(self, u, l, r): self.tree[u] += self.lazy[u] if l + 1 < r: self.lazy[u * 2 + 1] += self.lazy[u] self.lazy[u * 2 + 2] += self.lazy[u] self.lazy[u] = 0 def add(self, l, r, a, u=0, tl=0, tr=-1): if tr == -1: tr = self.n if r <= tl or tr <= l: return if l <= tl and tr <= r: self.lazy[u] += a self.prop(u, tl, tr) return self.prop(u, tl, tr) tm = (tl + tr) // 2 self.add(l, r, a, u * 2 + 1, tl, tm) self.add(l, r, a, u * 2 + 2, tm, tr) self.tree[u] = max(self.tree[u * 2 + 1], self.tree[u * 2 + 2]) def max(self, l, r, u=0, tl=0, tr=-1): res = -self.inf if tr == -1: tr = self.n if r <= tl or tr <= l: return res self.prop(u, tl, tr) if l <= tl and tr <= r: return self.tree[u] tm = (tl + tr) // 2 ret = self.max(l, r, u * 2 + 1, tl, tm) if ret > res: res = ret ret = self.max(l, r, u * 2 + 2, tm, tr) if ret > res: res = ret return res n=II() tt=LI() for i in range(n-1):tt[i]-=i*3 st=LazySeg(tt) mn=3*(n-1) for _ in range(II()): l,r,d=MI() st.add(l-1,r,d) print(mn+st.max(0,n-1))