結果

問題 No.1000 Point Add and Array Add
ユーザー qqqqqqqq
提出日時 2020-03-26 19:02:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 128,196 KB
最終ジャッジ日時 2025-01-02 02:57:39
合計ジャッジ時間 6,929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,080 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 36 ms
53,368 KB
testcase_03 AC 35 ms
53,132 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 35 ms
53,112 KB
testcase_06 AC 33 ms
52,856 KB
testcase_07 AC 31 ms
53,436 KB
testcase_08 AC 33 ms
52,780 KB
testcase_09 AC 32 ms
53,152 KB
testcase_10 AC 30 ms
53,192 KB
testcase_11 AC 33 ms
54,332 KB
testcase_12 AC 58 ms
72,508 KB
testcase_13 AC 52 ms
69,808 KB
testcase_14 AC 71 ms
77,968 KB
testcase_15 AC 61 ms
75,104 KB
testcase_16 AC 259 ms
112,320 KB
testcase_17 AC 234 ms
111,428 KB
testcase_18 AC 334 ms
128,044 KB
testcase_19 AC 349 ms
128,044 KB
testcase_20 AC 300 ms
125,236 KB
testcase_21 AC 309 ms
128,196 KB
testcase_22 AC 317 ms
127,920 KB
testcase_23 AC 327 ms
127,944 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