結果
問題 | No.789 範囲の合計 |
ユーザー | kohei2019 |
提出日時 | 2022-07-29 01:07:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 646 ms / 1,000 ms |
コード長 | 940 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 50,048 KB |
最終ジャッジ日時 | 2024-07-18 15:33:25 |
合計ジャッジ時間 | 6,425 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,624 KB |
testcase_01 | AC | 28 ms
10,496 KB |
testcase_02 | AC | 612 ms
43,208 KB |
testcase_03 | AC | 264 ms
19,072 KB |
testcase_04 | AC | 595 ms
42,744 KB |
testcase_05 | AC | 561 ms
42,652 KB |
testcase_06 | AC | 597 ms
42,688 KB |
testcase_07 | AC | 238 ms
19,200 KB |
testcase_08 | AC | 425 ms
31,804 KB |
testcase_09 | AC | 395 ms
31,228 KB |
testcase_10 | AC | 646 ms
50,048 KB |
testcase_11 | AC | 567 ms
42,600 KB |
testcase_12 | AC | 551 ms
42,472 KB |
testcase_13 | AC | 29 ms
10,624 KB |
testcase_14 | AC | 28 ms
10,752 KB |
ソースコード
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()