結果
問題 | No.789 範囲の合計 |
ユーザー | 双六 |
提出日時 | 2020-07-22 00:01:17 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,258 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 158,244 KB |
最終ジャッジ日時 | 2024-06-10 06:36:42 |
合計ジャッジ時間 | 4,170 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
56,016 KB |
testcase_01 | AC | 40 ms
54,792 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 153 ms
97,524 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | AC | 145 ms
97,124 KB |
testcase_08 | AC | 190 ms
119,612 KB |
testcase_09 | AC | 176 ms
116,916 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 37 ms
54,740 KB |
testcase_14 | AC | 37 ms
53,848 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline from collections import defaultdict def getlist(): return list(map(int, input().split())) class SegmentTree(object): #N:処理する区間の長さ def __init__(self, N): self.N0 = 2 ** (N - 1).bit_length() self.data = [0] * (2 * self.N0) #k番目の値にxを足す def update(self, k, x): k += self.N0 - 1 self.data[k] += x while k > 0: k = (k - 1) // 2 self.data[k] = self.data[2 * k + 1] + self.data[2 * k + 2] #区間[l, r]の和 def query(self, l, r): L = l + self.N0; R = r + self.N0 + 1 m = 0 while L < R: if R & 1: R -= 1 m += self.data[R - 1] if L & 1: m += self.data[L - 1] L += 1 L >>= 1; R >>= 1 return m #処理内容 def main(): N = int(input()) Q = []; S = [] for i in range(N): q = getlist() Q.append(q) if q[0] == 0: S.append(q[1]) else: S.append(q[1]); S.append(q[2]) S = list(sorted(list(set(S)))) # key:値 value:index D = defaultdict(int) for i in range(len(S)): D[S[i]] = i # セグ木 ans = 0 Seg = SegmentTree(2 * N) for a, b, c in Q: if a == 0: x = D[b] y = c Seg.update(x, y) else: l = D[b] r = D[c] ans += Seg.query(l, r) print(ans) if __name__ == '__main__': main()