結果

問題 No.1000 Point Add and Array Add
ユーザー stngstng
提出日時 2022-08-17 17:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 158,120 KB
最終ジャッジ日時 2024-10-04 19:51:37
合計ジャッジ時間 8,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,352 KB
testcase_01 AC 35 ms
53,228 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 36 ms
52,900 KB
testcase_04 AC 32 ms
52,820 KB
testcase_05 AC 32 ms
53,444 KB
testcase_06 AC 34 ms
53,016 KB
testcase_07 AC 33 ms
52,664 KB
testcase_08 AC 33 ms
54,092 KB
testcase_09 AC 33 ms
53,624 KB
testcase_10 AC 32 ms
53,268 KB
testcase_11 AC 34 ms
53,424 KB
testcase_12 AC 81 ms
77,784 KB
testcase_13 AC 75 ms
77,632 KB
testcase_14 AC 100 ms
78,488 KB
testcase_15 AC 84 ms
77,900 KB
testcase_16 AC 419 ms
123,548 KB
testcase_17 AC 370 ms
123,728 KB
testcase_18 AC 544 ms
146,016 KB
testcase_19 AC 585 ms
146,104 KB
testcase_20 AC 623 ms
158,120 KB
testcase_21 AC 435 ms
130,860 KB
testcase_22 AC 629 ms
157,740 KB
testcase_23 AC 495 ms
134,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

class RangeUpdate:
    def __init__(self, n):
        self.p = Bit(n + 1)
        self.q = Bit(n + 1)
     
    def add(self, s, t, x):
        t += 1
        self.p.add(s, -x * s)
        self.p.add(t, x * t)
        self.q.add(s, x)
        self.q.add(t, -x)
     
    def sum(self, s, t):
        t += 1
        return self.p.sum(t) + self.q.sum(t) * t - \
               self.p.sum(s) - self.q.sum(s) * s
    #yukicoder218B

n,q = map(int,input().split())
a = [int(i) for i in input().split()]
cxy = [input().split() for j in range(q)]

ru = RangeUpdate(n+1)

add = []

for i in range(q):
    c,x,y = cxy[i]
    x,y = int(x),int(y)
    if c == "A":
        tmp = ru.sum(x,x)
        add.append([x,y,tmp])
    else:
        ru.add(x,y,1)

b = [0]*n
for i in range(n):
    b[i] = ru.sum(i+1,i+1)*a[i]

for i in range(len(add)):
    x,y,tmp = add[i]
    b[x-1] += y*(ru.sum(x,x)-tmp)

print(*b)
0