結果

問題 No.1000 Point Add and Array Add
ユーザー roarisroaris
提出日時 2020-07-24 23:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 152,124 KB
最終ジャッジ日時 2024-06-25 23:03:31
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,008 KB
testcase_01 AC 38 ms
54,396 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 36 ms
52,616 KB
testcase_04 AC 37 ms
53,028 KB
testcase_05 AC 37 ms
53,748 KB
testcase_06 AC 36 ms
53,848 KB
testcase_07 AC 38 ms
52,788 KB
testcase_08 AC 38 ms
53,848 KB
testcase_09 AC 38 ms
52,676 KB
testcase_10 AC 36 ms
53,472 KB
testcase_11 AC 36 ms
53,080 KB
testcase_12 AC 61 ms
70,856 KB
testcase_13 AC 57 ms
68,944 KB
testcase_14 AC 67 ms
75,656 KB
testcase_15 AC 65 ms
72,760 KB
testcase_16 AC 282 ms
121,364 KB
testcase_17 AC 260 ms
121,072 KB
testcase_18 AC 391 ms
152,124 KB
testcase_19 AC 385 ms
151,856 KB
testcase_20 AC 327 ms
148,280 KB
testcase_21 AC 347 ms
151,608 KB
testcase_22 AC 356 ms
152,120 KB
testcase_23 AC 363 ms
151,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(n+1)
    
    def add(self, i, x):
        i += 1
        
        while i<=self.n:
            self.bit[i] += x
            i += i&(-i)

    def acc(self, i):
        s = 0
        
        while i>0:
            s += self.bit[i]
            i -= i&(-i)
        
        return s

N, Q = map(int, input().split())
A = list(map(int, input().split()))
cxy = [tuple(input().split()) for _ in range(Q)]
ans = [0]*N
bit = BIT(N)

for c, x, y in cxy[::-1]:
    x, y = int(x), int(y)
    
    if c=='A':
        ans[x-1] += y*bit.acc(x)
    else:
        bit.add(x-1, 1)
        bit.add(y, -1)

for i in range(N):
    ans[i] += A[i]*bit.acc(i+1)
    
print(*ans)
0