結果

問題 No.1000 Point Add and Array Add
ユーザー AEnAEn
提出日時 2022-12-31 14:59:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 141,192 KB
最終ジャッジ日時 2024-05-04 22:08:14
合計ジャッジ時間 8,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 100 ms
76,928 KB
testcase_13 AC 98 ms
76,928 KB
testcase_14 AC 108 ms
77,312 KB
testcase_15 AC 102 ms
76,904 KB
testcase_16 AC 385 ms
114,324 KB
testcase_17 AC 363 ms
113,568 KB
testcase_18 AC 510 ms
141,052 KB
testcase_19 AC 507 ms
141,056 KB
testcase_20 AC 461 ms
137,472 KB
testcase_21 AC 477 ms
140,668 KB
testcase_22 AC 495 ms
141,192 KB
testcase_23 AC 496 ms
141,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Binary_Indexed_Tree:
    def __init__(self, n) -> None:
        self._n = n
        self.data = [0] * (n+1)
        self.depth = n.bit_length()

    def add(self, p, x) -> None:
        """任意の要素ai←ai+xを行う O(logn)"""
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p-1] += x
            p += p & (-p)
    
    def sum(self, l, r) -> int:
        """区間[l,r)で計算"""
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)
    
    def _sum(self, d) -> int:
        sm = 0
        while d > 0:
            sm += self.data[d-1]
            d -= d & (-d)
        return sm

N, Q = map(int, input().split())
A = list(map(int, input().split()))
q = [list(map(str, input().split())) for _ in range(Q)]
load = Binary_Indexed_Tree(N+5)
B = [0]*N
for s,x,y in q[::-1]:
    x = int(x)
    y = int(y)
    if s=='A':
        num = load._sum(x)
        B[x-1] += y*num
    else:
        load.add(x-1,1)
        load.add(y,-1)
for i in range(N):
    num = load._sum(i+1)
    B[i] += A[i]*num
print(*B)
0