結果

問題 No.789 範囲の合計
ユーザー stngstng
提出日時 2022-06-25 18:34:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 1,000 ms
コード長 897 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 113,844 KB
最終ジャッジ日時 2024-04-27 05:23:56
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,660 KB
testcase_01 AC 35 ms
53,356 KB
testcase_02 AC 276 ms
108,528 KB
testcase_03 AC 207 ms
91,340 KB
testcase_04 AC 260 ms
109,832 KB
testcase_05 AC 237 ms
105,244 KB
testcase_06 AC 259 ms
108,520 KB
testcase_07 AC 201 ms
92,108 KB
testcase_08 AC 233 ms
113,844 KB
testcase_09 AC 221 ms
110,048 KB
testcase_10 AC 271 ms
98,856 KB
testcase_11 AC 252 ms
110,948 KB
testcase_12 AC 242 ms
110,556 KB
testcase_13 AC 36 ms
53,284 KB
testcase_14 AC 35 ms
52,524 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