-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreeSegmentSegment.cpp
65 lines (55 loc) · 1.32 KB
/
TreeSegmentSegment.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
#include <bits/stdc++.h>
using namespace std;
#define lc (v << 1)
#define rc (v << 1 | 1)
const int N = 3e5, NT = N + 2;
const int NTREE = 524288 * 2 + 2;
long long T[NTREE], lazy[NTREE], A[NT];
int ntree = 1;
void build(int n) {
while (ntree < n)
ntree <<= 1;
for (int i = 1; i <= n; i++)
T[i + ntree - 1] = A[i];
for (int v = ntree - 1; v >= 1; v--)
T[v] = max(T[lc], T[rc]);
}
void push(int v, long long len) {
T[lc] += lazy[v] * len / 2;
T[rc] += lazy[v] * len / 2;
lazy[lc] += lazy[v];
lazy[rc] += lazy[v];
lazy[v] = 0;
}
long long query(int v, int tl, int tr, int l, int r) {
if (l <= tl and tr <= r)
return T[v];
int tm = (tl + tr) >> 1;
push(v, tr - tl + 1);
long long a = 0, b = 0;
if (l <= tm)
a = query(lc, tl, tm, l, r);
if (r > tm)
b = query(rc, tm + 1, tr, l, r);
T[v] = T[lc] + T[rc] + lazy[v] * (tr - tl + 1);
return a + b;
}
void update(int v, int tl, int tr, int l, int r, long long val) {
if (l <= tl and tr <= r) {
T[v] += val * (tr - tl + 1);
lazy[v] += val;
return;
}
int tm = (tl + tr) >> 1;
push(v, tr - tl + 1);
if (l <= tm)
update(lc, tl, tm, l, r, val);
if (r > tm)
update(rc, tm + 1, tr, l, r, val);
T[v] = T[lc] + T[rc] + lazy[v] * (tr - tl + 1);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
return 0;
}