結果

問題 No.631 Noelちゃんと電車旅行
ユーザー mkawa2mkawa2
提出日時 2020-07-09 15:54:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,494 ms / 2,000 ms
コード長 1,838 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-10-02 09:47:21
合計ジャッジ時間 19,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 925 ms
86,016 KB
testcase_01 AC 1,443 ms
94,592 KB
testcase_02 AC 1,339 ms
94,848 KB
testcase_03 AC 1,494 ms
94,976 KB
testcase_04 AC 1,433 ms
94,848 KB
testcase_05 AC 1,457 ms
94,848 KB
testcase_06 AC 630 ms
83,456 KB
testcase_07 AC 348 ms
85,504 KB
testcase_08 AC 1,169 ms
91,520 KB
testcase_09 AC 1,131 ms
89,216 KB
testcase_10 AC 811 ms
91,392 KB
testcase_11 AC 823 ms
87,040 KB
testcase_12 AC 969 ms
93,184 KB
testcase_13 AC 888 ms
85,632 KB
testcase_14 AC 433 ms
80,256 KB
testcase_15 AC 804 ms
84,992 KB
testcase_16 AC 59 ms
63,104 KB
testcase_17 AC 63 ms
64,768 KB
testcase_18 AC 56 ms
62,080 KB
testcase_19 AC 56 ms
62,464 KB
testcase_20 AC 57 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
        lazy = [0] * (2 * n)
        tree[n:n + len(aa)] = aa
        for u in range(n - 1, 0, -1): tree[u] = max(tree[u * 2], tree[u * 2 + 1])
        self.tree = tree
        self.lazy = lazy
        self.n = n
        self.inf = inf

    def add(self, l, r, a, u=1, tl=0, tr=-1):
        if tr == -1: tr = self.n
        self._eval(u)
        if r <= tl or tr <= l: return
        if l <= tl and tr <= r:
            self.lazy[u] += a
            self._eval(u)
            return
        tm = (tl + tr) // 2
        self.add(l, r, a, u * 2, tl, tm)
        self.add(l, r, a, u * 2 + 1, tm, tr)
        self.tree[u]=max(self.tree[u*2],self.tree[u*2+1])

    def max(self, l, r, u=1, tl=0, tr=-1):
        if tr == -1: tr = self.n
        if r <= tl or tr <= l: return -self.inf
        self._eval(u)
        if l <= tl and tr <= r:return self.tree[u]
        tm = (tl + tr) // 2
        return max(self.max(l, r, u * 2, tl, tm),self.max(l, r, u * 2 + 1, tm, tr))

    def _eval(self, u):
        self.tree[u]+=self.lazy[u]
        if u<self.n:
            self.lazy[u * 2] += self.lazy[u]
            self.lazy[u * 2 + 1] += self.lazy[u]
        self.lazy[u]=0

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))
0