結果
問題 | No.789 範囲の合計 |
ユーザー | mkawa2 |
提出日時 | 2021-02-12 08:59:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 760 ms / 1,000 ms |
コード長 | 1,563 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 56,520 KB |
最終ジャッジ日時 | 2024-07-19 02:48:18 |
合計ジャッジ時間 | 8,571 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
12,160 KB |
testcase_01 | AC | 30 ms
12,416 KB |
testcase_02 | AC | 733 ms
49,336 KB |
testcase_03 | AC | 438 ms
27,008 KB |
testcase_04 | AC | 731 ms
49,092 KB |
testcase_05 | AC | 660 ms
49,000 KB |
testcase_06 | AC | 693 ms
49,072 KB |
testcase_07 | AC | 462 ms
27,392 KB |
testcase_08 | AC | 547 ms
39,416 KB |
testcase_09 | AC | 517 ms
39,252 KB |
testcase_10 | AC | 760 ms
56,520 KB |
testcase_11 | AC | 640 ms
48,856 KB |
testcase_12 | AC | 635 ms
48,788 KB |
testcase_13 | AC | 31 ms
12,288 KB |
testcase_14 | AC | 30 ms
12,288 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def MI(): return map(int, sys.stdin.buffer.readline().split()) def MI1(): return map(int1, sys.stdin.buffer.readline().split()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] inf = 10**16 # md = 998244353 md = 10**9+7 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)