結果

問題 No.789 範囲の合計
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 13:37:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 925 ms / 1,000 ms
コード長 714 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 42,004 KB
最終ジャッジ日時 2024-05-08 03:57:41
合計ジャッジ時間 8,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 873 ms
41,632 KB
testcase_03 AC 350 ms
20,352 KB
testcase_04 AC 829 ms
41,416 KB
testcase_05 AC 766 ms
41,304 KB
testcase_06 AC 795 ms
41,436 KB
testcase_07 AC 325 ms
20,560 KB
testcase_08 AC 588 ms
31,924 KB
testcase_09 AC 556 ms
31,328 KB
testcase_10 AC 925 ms
42,004 KB
testcase_11 AC 750 ms
41,100 KB
testcase_12 AC 740 ms
41,004 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,880 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