結果

問題 No.1000 Point Add and Array Add
ユーザー mkawa2mkawa2
提出日時 2020-02-28 22:05:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,729 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 83,176 KB
最終ジャッジ日時 2024-10-13 17:28:26
合計ジャッジ時間 14,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 37 ms
11,392 KB
testcase_13 AC 33 ms
11,264 KB
testcase_14 AC 39 ms
11,392 KB
testcase_15 AC 38 ms
11,392 KB
testcase_16 AC 1,124 ms
62,060 KB
testcase_17 AC 1,033 ms
56,816 KB
testcase_18 AC 1,627 ms
82,400 KB
testcase_19 AC 1,646 ms
82,352 KB
testcase_20 AC 1,227 ms
70,880 KB
testcase_21 AC 1,725 ms
80,816 KB
testcase_22 AC 1,438 ms
83,176 KB
testcase_23 AC 1,729 ms
80,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
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)]
def SI(): return sys.stdin.readline()[:-1]

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