-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOJ3468 recursive segtree.cpp
102 lines (88 loc) · 2 KB
/
POJ3468 recursive segtree.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include <cstdio>
#include <memory>
using namespace std;
const int MAXN = 100007;
typedef long long ll;
struct Node {
ll s, d, len;
int l, r;
} t[MAXN<<2];
int n, q;
inline int ls(int x) { return x<<1; }
inline int rs(int x) { return x<<1 | 1; }
inline bool inside(Node& n, int l, int r) { return l<=n.l && n.r<=r; }
inline bool outside(Node& n, int l, int r) { return r<n.l || l>n.r; }
void refresh(int x) {
t[x].s = t[ls(x)].s + t[rs(x)].s + t[x].d * t[x].len;
}
void build(int node, int l, int r) {
Node& n = t[node];
n.l = l, n.r = r;
n.len = r - l + 1;
n.d = 0;
if (l==r) {
#ifdef ONLINE_JUDGE
scanf("%I64d", &n.s);
#else
scanf("%lld", &n.s);
#endif
} else {
int mid = (l+r)>>1;
build(ls(node), l, mid);
build(rs(node), mid+1, r);
refresh(node);
}
}
void apply(int x, ll v) {
t[x].s += v * t[x].len;
t[x].d += v;
}
void push_down(int x) {
if (t[x].d!=0) {
apply(ls(x), t[x].d);
apply(rs(x), t[x].d);
t[x].d = 0;
}
}
void update(int node, int l, int r, ll v) {
Node& n = t[node];
if (inside(n, l, r))
apply(node, v);
else if (outside(n, l, r))
return;
else {
push_down(node);
update(ls(node), l, r, v);
update(rs(node), l, r, v);
refresh(node);
}
}
ll query(int node, int l, int r ) {
Node& n = t[node];
if (inside(n, l, r)) return n.s;
if (outside(n, l, r)) return 0;
push_down(node);
return query(ls(node), l, r) + query(rs(node), l, r);
}
int main() {
scanf("%d %d\n", &n, &q);
build(1, 1, n);
scanf("\n");
char ch;
int a, b, c;
while (q--) {
scanf("%c", &ch);
if (ch=='C') {
scanf("%d %d %d\n", &a, &b, &c);
update(1, a, b, c);
} else {
scanf("%d %d\n", &a, &b);
#ifdef ONLINE_JUDGE
printf("%I64d\n", query(1, a, b));
#else
printf("%lld\n", query(1, a, b));
#endif
}
}
return 0;
}