結果

問題 No.789 範囲の合計
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 13:37:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 1,000 ms
コード長 714 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 123,160 KB
最終ジャッジ日時 2024-05-08 03:57:32
合計ジャッジ時間 5,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,008 KB
testcase_01 AC 38 ms
53,076 KB
testcase_02 AC 334 ms
119,736 KB
testcase_03 AC 148 ms
95,656 KB
testcase_04 AC 319 ms
115,476 KB
testcase_05 AC 299 ms
118,000 KB
testcase_06 AC 311 ms
119,832 KB
testcase_07 AC 140 ms
95,240 KB
testcase_08 AC 221 ms
104,812 KB
testcase_09 AC 207 ms
101,008 KB
testcase_10 AC 363 ms
123,160 KB
testcase_11 AC 305 ms
115,828 KB
testcase_12 AC 307 ms
115,632 KB
testcase_13 AC 38 ms
52,684 KB
testcase_14 AC 38 ms
53,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

Q = []
P = []
n = int(input())
for i in range(n):
    c, x, y = map(int, input().split())
    Q.append((c, x, y))
    if c == 0:
        P.append(x)
    else:
        P.append(x)
        P.append(y)

P = list(set(P))
P.sort()
d = {}
import bisect
for p in P:
    d[p] = bisect.bisect_left(P, p)+1

m = len(P)
bit = [0]*(m+1)

def bit_query(i):
    res = 0
    while i > 0:
        res += bit[i]
        i -= i & (-i)
    return res

def bit_update(i, x):
    while i <= m:
        bit[i] += x
        i += i & (-i)

ans = 0
for i in range(n):
    c, x, y = Q[i]
    if c == 0:
        bit_update(d[x], y)
    else:
        ans += bit_query(d[y])-bit_query(d[x]-1)
print(ans)
0