-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrange-sum-query-mutable.cpp
73 lines (68 loc) · 1.56 KB
/
range-sum-query-mutable.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.
//
// The update(i, val) function modifies nums by updating the element at index i to val.
//
// Example:
//
// Given nums = [1, 3, 5]
//
// sumRange(0, 2) -> 9
// update(1, 2)
// sumRange(0, 2) -> 8
//
//
//
// Note:
//
// The array is only modifiable by the update function.
// You may assume the number of calls to update and sumRange function is distributed evenly.
//
//
class NumArray {
vector<int> tree;
int r=1;
public:
NumArray(vector<int> nums) {
while (r<nums.size()) {
r*=2;
}
for (int i=0; i<=2*r; i++) {
tree.push_back(0);
}
for (int i=0; i<nums.size(); i++) {
update(i,nums[i]);
}
}
void update(int i, int val) {
i+=r;
tree[i]=val;
i/=2;
while (i>0) {
tree[i]=tree[2*i]+tree[(2*i)+1];
i/=2;
}
}
int sumRange(int i, int j) {
i+=r; j+=r;
int ans=tree[i];
if (i!=j) {
ans+=tree[j];
}
while ((i/2)!=(j/2)) {
if (!(i%2)) {
ans+=tree[i+1];
}
if (j%2) {
ans+=tree[j-1];
}
i/=2; j/=2;
}
return ans;
}
};
/**
* Your NumArray object will be instantiated and called as such:
* NumArray obj = new NumArray(nums);
* obj.update(i,val);
* int param_2 = obj.sumRange(i,j);
*/