結果

問題 No.1000 Point Add and Array Add
ユーザー mkawa2mkawa2
提出日時 2020-02-28 22:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 140,928 KB
最終ジャッジ日時 2024-10-13 17:42:04
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 74 ms
76,800 KB
testcase_13 AC 68 ms
73,984 KB
testcase_14 AC 79 ms
77,500 KB
testcase_15 AC 81 ms
76,800 KB
testcase_16 AC 291 ms
114,108 KB
testcase_17 AC 266 ms
113,348 KB
testcase_18 AC 377 ms
140,552 KB
testcase_19 AC 386 ms
140,280 KB
testcase_20 AC 349 ms
137,984 KB
testcase_21 AC 363 ms
140,928 KB
testcase_22 AC 364 ms
140,416 KB
testcase_23 AC 369 ms
140,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

class BitSum:
    def __init__(self, n):
        self.n = n + 3
        self.table = [0] * (self.n + 1)

    def add(self, i, x):
        i += 1
        while i <= self.n:
            self.table[i] += x
            i += i & -i

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            i -= i & -i
        return res

def main():
    n,q=MI()
    aa=LI()
    cxy=[input().split() for _ in range(q)]
    bit=BitSum(n+1)
    bb=[0]*n
    for c,x,y in cxy[::-1]:
        x,y=int(x),int(y)
        if c=="A":
            x-=1
            k=bit.sum(x)
            bb[x]+=k*y
        else:
            x,y=x-1,y-1
            bit.add(x,1)
            bit.add(y+1,-1)
    for i in range(n):
        k=bit.sum(i)
        bb[i]+=k*aa[i]
    print(*bb)

main()
0