結果

問題 No.1000 Point Add and Array Add
ユーザー tamatotamato
提出日時 2020-02-28 21:38:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 151,808 KB
最終ジャッジ日時 2024-10-13 17:02:17
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 36 ms
51,936 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 37 ms
51,948 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 61 ms
68,736 KB
testcase_13 AC 57 ms
67,072 KB
testcase_14 AC 67 ms
74,112 KB
testcase_15 AC 66 ms
72,448 KB
testcase_16 AC 263 ms
121,736 KB
testcase_17 AC 242 ms
120,728 KB
testcase_18 AC 344 ms
151,564 KB
testcase_19 AC 371 ms
151,808 KB
testcase_20 AC 333 ms
148,032 KB
testcase_21 AC 344 ms
150,996 KB
testcase_22 AC 334 ms
151,512 KB
testcase_23 AC 319 ms
151,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    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

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    query = [None] * Q
    for i in range(Q):
        query[Q-i-1] = tuple(input().split())

    bit = Bit(N+3)
    ans = [0] * (N+1)
    for flg, x, y in query:
        x = int(x)
        y = int(y)
        if flg == 'B':
            bit.add(x, 1)
            bit.add(y+1, -1)
        else:
            ans[x] += y * bit.sum(x)
    for x in range(1, N+1):
        ans[x] += A[x-1] * bit.sum(x)
    print(*ans[1:])




if __name__ == '__main__':
    main()
0