結果

問題 No.1000 Point Add and Array Add
ユーザー しーあるしーある
提出日時 2020-03-17 01:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,453 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,068 KB
最終ジャッジ日時 2024-05-06 14:00:39
合計ジャッジ時間 6,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,692 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 36 ms
10,752 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 67 ms
11,008 KB
testcase_13 AC 52 ms
10,880 KB
testcase_14 AC 86 ms
11,136 KB
testcase_15 AC 67 ms
11,264 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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