結果

問題 No.789 範囲の合計
ユーザー stngstng
提出日時 2022-06-25 18:34:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 1,000 ms
コード長 897 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 113,444 KB
最終ジャッジ日時 2024-11-15 05:57:39
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,704 KB
testcase_01 AC 38 ms
53,780 KB
testcase_02 AC 331 ms
108,664 KB
testcase_03 AC 250 ms
91,348 KB
testcase_04 AC 315 ms
110,088 KB
testcase_05 AC 277 ms
105,236 KB
testcase_06 AC 301 ms
108,648 KB
testcase_07 AC 244 ms
92,484 KB
testcase_08 AC 294 ms
113,444 KB
testcase_09 AC 274 ms
109,796 KB
testcase_10 AC 325 ms
99,232 KB
testcase_11 AC 319 ms
110,704 KB
testcase_12 AC 297 ms
110,812 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
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 = int(input())
qry = []
idx = []
for i in range(n):
    q = [int(i) for i in input().split()]
    qry.append(q)
    if q[0] == 0:
        idx.append(q[1])

asrt = sorted(set(idx))
adt = { v: i for i, v in enumerate(asrt) }

ki = Bit(len(adt)+1)
ans = 0
#print(bisect.bisect_left(asrt,5)+1)
#print(asrt)
for i in range(n):
    q,x,y = qry[i]
    if q == 0:
        ki.add(adt[x]+1,y)
    else:
        l = bisect.bisect_left(asrt,x)
        r = bisect.bisect_right(asrt,y)
        ans += ki.sum(r) - ki.sum(l)
        #print(ans,l,r)

print(ans)
0