結果

問題 No.1000 Point Add and Array Add
ユーザー qqqqqqqq
提出日時 2020-03-26 19:02:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 129,624 KB
最終ジャッジ日時 2024-06-10 13:15:11
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,428 KB
testcase_01 AC 34 ms
52,436 KB
testcase_02 AC 39 ms
52,496 KB
testcase_03 AC 34 ms
53,112 KB
testcase_04 AC 34 ms
53,160 KB
testcase_05 AC 34 ms
52,084 KB
testcase_06 AC 35 ms
53,296 KB
testcase_07 AC 34 ms
53,488 KB
testcase_08 AC 36 ms
52,876 KB
testcase_09 AC 35 ms
53,088 KB
testcase_10 AC 35 ms
51,944 KB
testcase_11 AC 33 ms
52,188 KB
testcase_12 AC 60 ms
71,932 KB
testcase_13 AC 58 ms
70,916 KB
testcase_14 AC 74 ms
77,468 KB
testcase_15 AC 64 ms
74,524 KB
testcase_16 AC 276 ms
113,012 KB
testcase_17 AC 227 ms
111,980 KB
testcase_18 AC 335 ms
129,268 KB
testcase_19 AC 338 ms
129,624 KB
testcase_20 AC 298 ms
125,680 KB
testcase_21 AC 308 ms
129,000 KB
testcase_22 AC 320 ms
129,364 KB
testcase_23 AC 314 ms
129,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
reader = (s.rstrip() for s in sys.stdin)
input = reader.__next__

class Binary_Indexed_Tree_RAQ():
    def __init__(self, n):
        self.data = [0]*(n+1)
        self.n = n+1

    def __add(self, ind, num):
        while(ind <= self.n):
            self.data[ind - 1] += num
            ind += ind & -ind

    # [s, t]
    def range_add(self, s, t, x):
        s += 1
        t += 1
        self.__add(s,x)
        self.__add(t+1,-x)

    # [0, i]
    def query(self, i):
        i += 1
        ret = 0
        while(i > 0):
            ret += self.data[i-1]
            i -= i & -i
        return ret

n,q = map(int, input().split())
a = list(map(int, input().split()))
cxy = [input().split() for i in range(q)]
b = [0]*n
BIT = Binary_Indexed_Tree_RAQ(n)
for c,x,y in reversed(cxy):
    x,y = int(x)-1, int(y)
    if c == "A":
        b[x] += BIT.query(x)*y
    else:
        BIT.range_add(x, y-1, 1)
for i in range(n):
    b[i] += BIT.query(i)*a[i]

print(*b)
0