結果

問題 No.789 範囲の合計
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-15 22:09:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,484 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 129,680 KB
最終ジャッジ日時 2024-09-20 02:21:17
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,892 KB
testcase_01 AC 34 ms
53,436 KB
testcase_02 AC 248 ms
125,024 KB
testcase_03 AC 122 ms
91,896 KB
testcase_04 AC 227 ms
120,760 KB
testcase_05 AC 213 ms
126,336 KB
testcase_06 AC 220 ms
125,756 KB
testcase_07 AC 115 ms
91,816 KB
testcase_08 AC 160 ms
105,504 KB
testcase_09 AC 164 ms
102,232 KB
testcase_10 MLE -
testcase_11 AC 230 ms
122,068 KB
testcase_12 AC 218 ms
122,232 KB
testcase_13 AC 35 ms
52,220 KB
testcase_14 AC 34 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class fenwick_tree(object):
    def __init__(self, n):
        self.n = n
        self.log = n.bit_length()
        self.data = [0] * n

    def __sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def add(self, p, x):
        """ a[p] += xを行う"""
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """a[l] + a[l+1] + .. + a[r-1]を返す"""
        return self.__sum(r) - self.__sum(l)

    def lower_bound(self, x):
        """a[0] + a[1] + .. a[i] >= x となる最小のiを返す"""
        if x <= 0:
            return -1
        i = 0
        k = 1 << self.log
        while k:
            if i + k <= self.n and self.data[i + k - 1] < x:
                x -= self.data[i + k - 1]
                i += k
            k >>= 1
        return i


n = int(input())
A = set()
A.add(0)
A.add(10 ** 9)
query = []
for _ in range(n):
    k, x, y = map(int, input().split())
    if k == 0:
        A.add(x)
    else:
        A.add(x)
        A.add(y)
    query.append((k, x, y))

sz = len(A)
atoi = {a: i for i, a in enumerate(sorted(A))}
bit = fenwick_tree(sz)

ans = 0
for k, x, y in query:
    if k == 0:
        i = atoi[x]
        bit.add(i, y)
    else:
        l = atoi[x]
        r = atoi[y] + 1
        ans += bit.sum(l, r)
print(ans)
0