結果

問題 No.789 範囲の合計
ユーザー kohei2019kohei2019
提出日時 2022-07-29 01:07:04
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 940 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 131,092 KB
最終ジャッジ日時 2024-07-18 15:33:15
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 259 ms
125,668 KB
testcase_03 AC 141 ms
90,104 KB
testcase_04 AC 258 ms
120,204 KB
testcase_05 AC 239 ms
125,328 KB
testcase_06 AC 252 ms
125,764 KB
testcase_07 AC 142 ms
90,112 KB
testcase_08 AC 193 ms
104,288 KB
testcase_09 AC 178 ms
101,964 KB
testcase_10 MLE -
testcase_11 AC 240 ms
120,280 KB
testcase_12 AC 231 ms
121,040 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT():
    def __init__(self, n):
        self.n = n
        self.data = [0]*(n+1)
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= i & -i
        return s
    def add(self, i, x):
        # assert i > 0
        while i <= self.n:
            self.data[i] += x
            i += i & -i
    def get(self, i, j):
        return self.sum(j) - self.sum(i)

import sys
input = sys.stdin.readline
def main():
    N = int(input())
    lsQ = []
    ss = set([0])
    for i in range(N):
        a,x,y = map(int,input().split())
        lsQ.append((a,x,y))
        if a == 0:
            ss.add(x)
        else:
            ss.add(x)
            ss.add(y)
    dic = {x:i+1 for i,x in enumerate(sorted(ss))}
    ans = 0
    BI = BIT(len(ss))
    for a,x,y in lsQ:
        if a == 0:
            BI.add(dic[x],y)
        else:
            ans += BI.get(dic[x]-1, dic[y])
    print(ans)
main()
0