結果

問題 No.1000 Point Add and Array Add
ユーザー しーあるしーある
提出日時 2020-03-17 01:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 113,968 KB
最終ジャッジ日時 2024-05-06 14:00:57
合計ジャッジ時間 7,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,064 KB
testcase_01 AC 38 ms
54,264 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 39 ms
52,532 KB
testcase_04 AC 37 ms
53,024 KB
testcase_05 AC 37 ms
53,240 KB
testcase_06 AC 38 ms
53,628 KB
testcase_07 AC 40 ms
52,464 KB
testcase_08 AC 38 ms
54,316 KB
testcase_09 AC 38 ms
53,240 KB
testcase_10 AC 36 ms
53,348 KB
testcase_11 AC 38 ms
52,836 KB
testcase_12 AC 87 ms
77,108 KB
testcase_13 AC 83 ms
76,252 KB
testcase_14 AC 103 ms
77,160 KB
testcase_15 AC 87 ms
76,864 KB
testcase_16 AC 404 ms
109,328 KB
testcase_17 AC 375 ms
93,740 KB
testcase_18 AC 547 ms
113,712 KB
testcase_19 AC 532 ms
113,704 KB
testcase_20 AC 496 ms
113,844 KB
testcase_21 AC 481 ms
113,964 KB
testcase_22 AC 529 ms
113,968 KB
testcase_23 AC 525 ms
113,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DualSegTree():
    def __init__(self,n,unit,f):
        self.n=n
        self.unit=unit
        self.data=[unit for _ in range(n*2)]
        self.f=f
    def propagate(self,i):
        if i>=self.n*2:return
        data,unit,f=self.data,self.unit,self.f
        c,j=0,i
        while j:
            j>>=1
            c+=1
        for j in range(c-1,0,-1):
            j=i>>j
            data[j+j]=f(data[j+j],data[j])
            data[j-~j]=f(data[j-~j],data[j])
            data[j]=unit
    def update(self,l,r,x):
        data,f=self.data,self.f
        l+=self.n
        r+=self.n
        self.propagate(l)
        self.propagate(r)
        while l<r:
            if l&1:
                data[l]=f(data[l],x)
                l+=1
            if r&1:
                r-=1
                data[r]=f(data[r],x)
            l>>=1
            r>>=1
    def get(self,i):
        i+=self.n
        self.propagate(i)
        return self.data[i]
def main():
    import sys
    input=sys.stdin.buffer.readline
    n,q=map(int,input().split())
    *a,=map(int,input().split())
    b=[0]*n
    c=DualSegTree(n,0,lambda a,b:a+b)
    for _ in range(q):
        q,*x=input().split()
        x,y=map(int,x)
        x-=1
        if q<b'B':
            v=c.get(x)
            b[x]+=a[x]*v
            c.update(x,x+1,-v)
            a[x]+=y
        else:
            c.update(x,y,1)
    for i in range(n):b[i]+=a[i]*c.get(i)
    print(' '.join(map(str,b)))
main()
0