結果

問題 No.1000 Point Add and Array Add
ユーザー titiatitia
提出日時 2020-02-28 21:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 178,144 KB
最終ジャッジ日時 2024-10-13 17:15:26
合計ジャッジ時間 6,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 43 ms
53,632 KB
testcase_10 AC 41 ms
53,632 KB
testcase_11 AC 41 ms
53,504 KB
testcase_12 AC 95 ms
77,824 KB
testcase_13 AC 91 ms
77,184 KB
testcase_14 AC 103 ms
78,208 KB
testcase_15 AC 96 ms
77,952 KB
testcase_16 AC 374 ms
132,028 KB
testcase_17 AC 367 ms
133,420 KB
testcase_18 AC 531 ms
168,160 KB
testcase_19 AC 507 ms
168,164 KB
testcase_20 AC 549 ms
175,076 KB
testcase_21 AC 409 ms
150,504 KB
testcase_22 AC 550 ms
178,144 KB
testcase_23 AC 436 ms
154,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))
Q=[tuple(input().split()) for i in range(Q)]


LEN=N+5

BIT=[0]*(LEN+1)# 1-indexedなtree

def update(v,w):# index vにwを加える
    while v<=LEN:
        BIT[v]+=w
        v+=(v&(-v))# 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v):# [1,v]の区間の和を求める
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v))# 自分より小さい2ベキのノードへ. たとえばv=3→v=2へ
    return ANS

from collections import defaultdict
check=defaultdict(list)

for c,x,y in Q:
    x=int(x)
    y=int(y)

    if c=="B":
        update(x,1)
        update(y+1,-1)

    else:
        check[x].append((getvalue(x),y))

ANS=[0]*N
for i in range(N):
    ANS[i]+=getvalue(i+1)*A[i]

#print(ANS)

for x in check:
    for c,y in check[x]:
        ANS[x-1]+=(getvalue(x)-c)*y

print(*ANS)
0