結果
問題 | No.789 範囲の合計 |
ユーザー | mkawa2 |
提出日時 | 2021-02-12 09:00:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 829 ms / 1,000 ms |
コード長 | 1,072 bytes |
コンパイル時間 | 448 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 56,432 KB |
最終ジャッジ日時 | 2024-07-19 02:51:04 |
合計ジャッジ時間 | 9,151 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
12,160 KB |
testcase_01 | AC | 32 ms
12,032 KB |
testcase_02 | AC | 818 ms
49,376 KB |
testcase_03 | AC | 478 ms
26,752 KB |
testcase_04 | AC | 747 ms
49,012 KB |
testcase_05 | AC | 692 ms
48,916 KB |
testcase_06 | AC | 678 ms
48,860 KB |
testcase_07 | AC | 480 ms
27,136 KB |
testcase_08 | AC | 579 ms
39,068 KB |
testcase_09 | AC | 543 ms
39,040 KB |
testcase_10 | AC | 829 ms
56,432 KB |
testcase_11 | AC | 672 ms
48,640 KB |
testcase_12 | AC | 663 ms
48,640 KB |
testcase_13 | AC | 34 ms
12,160 KB |
testcase_14 | AC | 34 ms
12,160 KB |
ソースコード
import sys def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] class BitSum: def __init__(self, n): self.n = n+1 self.table = [0]*self.n def add(self, i, x): i += 1 while i < self.n: self.table[i] += x i += i & -i # [0,i]の和 def sum(self, i): i += 1 res = 0 while i > 0: res += self.table[i] i -= i & -i return res # [l,r)の和 def sumlr(self, l, r): if l >= r: return 0 if l == 0: return self.sum(r-1) return self.sum(r-1)-self.sum(l-1) mx=200005 n=II() q=LLI(n) xx=set() for t,x,y in q: if t: xx.add(x) xx.add(y) else: xx.add(x) enc={a:i for i,a in enumerate(sorted(xx))} bit=BitSum(mx) ans=0 for t,x,y in q: if t: l,r=enc[x],enc[y]+1 ans+=bit.sumlr(l,r) else: x=enc[x] bit.add(x,y) print(ans)