-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazyst.sublime-snippet
73 lines (58 loc) · 1.49 KB
/
lazyst.sublime-snippet
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
<snippet>
<content><![CDATA[
template <typename T>
struct ST
{
int n;
int bstart, stsize;
vector<T> st, up;
/*
To fill in
*/
const T zero;
const T noup;
T op(T a, T b) {
}
void pushdown(int c, ll cmin, ll cmax) {
}
ST(int _n) {
n = _n;
bstart = 1;
while (bstart < n) bstart *= 2;
stsize = bstart * 2 - 1;
bstart--;
st.resize(stsize, zero);
up.resize(stsize, noup);
}
void update(int c, int cmin, int cmax, int minb, int maxb, T v) {
pushdown(c, cmin, cmax);
if (cmin >= minb && cmax <= maxb) {
up[c] = v;
pushdown(c, cmin, cmax);
return;
}
if (cmin > maxb || cmax < minb) return;
update(c * 2 + 1, cmin, (cmin + cmax) / 2, minb, maxb, v);
update(c * 2 + 2, 1 + (cmin + cmax) / 2, cmax, minb, maxb, v);
st[c] = op(st[c * 2 + 1], st[c * 2 + 2]);
}
void update(int lo, int hi, T v) {
update(0, 0, bstart, lo, hi, v);
}
T query(int c, int cmin, int cmax, int minb, int maxb) {
pushdown(c, cmin, cmax);
if (cmin >= minb && cmax <= maxb) return st[c];
if (cmin > maxb || cmax < minb) return zero;
return op(query(c * 2 + 1, cmin, (cmin + cmax) / 2, minb, maxb),
query(c * 2 + 2, 1 + (cmin + cmax) / 2, cmax, minb, maxb));
}
T query(int lo, int hi) {
return query(0, 0, bstart, lo, hi);
}
};
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>lazyst</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>