結果

問題 No.631 Noelちゃんと電車旅行
ユーザー titiatitia
提出日時 2024-07-07 04:00:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 2,839 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 93,888 KB
最終ジャッジ日時 2024-07-07 04:01:03
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
78,244 KB
testcase_01 AC 518 ms
93,868 KB
testcase_02 AC 476 ms
93,888 KB
testcase_03 AC 507 ms
93,832 KB
testcase_04 AC 485 ms
93,688 KB
testcase_05 AC 508 ms
93,860 KB
testcase_06 AC 264 ms
83,016 KB
testcase_07 AC 217 ms
84,680 KB
testcase_08 AC 411 ms
90,580 KB
testcase_09 AC 489 ms
83,564 KB
testcase_10 AC 376 ms
90,400 KB
testcase_11 AC 347 ms
85,688 KB
testcase_12 AC 403 ms
91,740 KB
testcase_13 AC 367 ms
79,128 KB
testcase_14 AC 214 ms
77,500 KB
testcase_15 AC 343 ms
80,548 KB
testcase_16 AC 47 ms
62,484 KB
testcase_17 AC 50 ms
63,144 KB
testcase_18 AC 47 ms
62,012 KB
testcase_19 AC 48 ms
62,288 KB
testcase_20 AC 47 ms
61,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
T=list(map(int,input().split()))

# 非再帰遅延伝搬セグ木(範囲加算, 範囲最小値出力)
# 高々N点を更新

seg_el=1<<(N.bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化
LAZY=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def indexes(L,R): # 遅延伝搬すべきノードのリストを下から上の順に返す. (つまり, updateやgetvaluesで見るノードより上にあるノードたち)
    INDLIST=[]

    R-=1
    
    L>>=1
    R>>=1

    while L!=R:
        if L>R:
            INDLIST.append(L)
            L>>=1
        else:
            INDLIST.append(R)
            R>>=1

    while L!=0:
        INDLIST.append(L)
        L>>=1

    return INDLIST
        

def adds(l,r,x): # 区間[l,r)を +x 更新
        
    L=l+seg_el
    R=r+seg_el

    L//=(L & (-L))
    R//=(R & (-R))

    UPIND=indexes(L,R)
    
    for ind in UPIND[::-1]: # 遅延伝搬. 上から更新していく. (ただし, 今回はうまくやるとこの部分を省ける. addはクエリの順番によらないので. addではなく, updateの場合必要)
        if LAZY[ind]!=0:
            plus_lazy=LAZY[ind]
            
            SEG[ind<<1]+=plus_lazy
            SEG[1+(ind<<1)]+=plus_lazy
            
            LAZY[ind<<1]+=plus_lazy
            LAZY[1+(ind<<1)]+=plus_lazy
            
            LAZY[ind]=0
    
    while L!=R:
        if L > R:
            SEG[L]+=x
            LAZY[L]+=x
            L+=1
            L//=(L & (-L))

        else:
            R-=1
            SEG[R]+=x
            LAZY[R]+=x
            R//=(R & (-R))

    for ind in UPIND:
        SEG[ind]=max(SEG[ind<<1],SEG[1+(ind<<1)]) # 最初の遅延伝搬を省いた場合, ここを変える
        
def getvalues(l,r): # 区間[l,r)に関するmaxを調べる

    L=l+seg_el
    R=r+seg_el

    L//=(L & (-L))
    R//=(R & (-R))

    UPIND=indexes(L,R)
    
    for ind in UPIND[::-1]: # 遅延伝搬
        if LAZY[ind]!=0:
            plus_lazy=LAZY[ind]
            
            SEG[ind<<1]+=plus_lazy
            SEG[1+(ind<<1)]+=plus_lazy
            
            LAZY[ind<<1]+=plus_lazy
            LAZY[1+(ind<<1)]+=plus_lazy
            
            LAZY[ind]=0
            
    ANS=0

    while L!=R:
        if L > R:
            ANS=max(ANS , SEG[L])
            L+=1
            L//=(L & (-L))

        else:
            R-=1
            ANS=max(ANS , SEG[R])
            R//=(R & (-R))

    return ANS

for i in range(N-1):
    adds(i,i+1,T[i]+(N-i-1)*3)

Q=int(input())

for tests in range(Q):
    l,r,plus=map(int,input().split())
    l-=1

    adds(l,r,plus)

    print(getvalues(0,N))

    
0