-
Notifications
You must be signed in to change notification settings - Fork 7
/
estructuras.cpp
99 lines (82 loc) · 2.3 KB
/
estructuras.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
#include <bits/stdc++.h>
using namespace std;
const int INF = 1 << 30;
// Segment Tree version dinamica. Para generar el
// arbol completo deben llamar a la funcion Construir.
// CUIDADO: Para usarlo deben especificar el tipo de
// dato a utilizar; SegTree<int> por ejemplo.
template<class T>
struct SegTree {
T dato; int i, d;
SegTree* izq, *der;
SegTree(int I, int D)
: izq(NULL), der(NULL),
i(I), d(D), dato() {}
~SegTree() {
if (izq) delete izq;
if (der) delete der;
}
T Construir() {
if (i == d) return dato = T();
int m = (i + d) >> 1;
izq = new SegTree(i, m);
der = new SegTree(m + 1, d);
return dato = izq->Construir() +
der->Construir();
}
T Actualizar(int a, T v) {
if (a < i || d < a) return dato;
if (a == i && d == a) return dato = v;
if (!izq) {
int m = (i + d) >> 1;
izq = new SegTree(i, m);
der = new SegTree(m + 1, d);
}
return dato = izq->Actualizar(a, v) +
der->Actualizar(a, v);
}
T Query(int a, int b) {
if (b < i || d < a) return T();
if (a <= i && d <= b) return dato;
return izq? izq->Query(a, b) +
der->Query(a, b): T();
}
};
// A continuación se ejemplifica como sobrecargar
// el operador + dentro de una estructura para poder
// reutilizar el codigo del Segment Tree facilmente.
// El ejemplo sobrecarga el + por la funcion de maximo.
// Es MUY IMPORTANTE tener un constructor por defecto.
struct MaxInt {
int d; MaxInt(int D) : d(D) {}
MaxInt() : d(-INF) {} // IMPORTANTE!
MaxInt operator+(const MaxInt& o) {
return MaxInt(max(d, o.d));
}
};
// Fenwick Tree. Indices de 1 a n.
struct FenTree {
vector<int> tree;
FenTree(int n) : tree(n + 1) {}
void Actualizar(int i, int v) {
while (i < tree.size()) {
tree[i] += v;
i += i & -i;
}
}
int Query(int i) {
int sum = 0;
while (i > 0) {
sum += tree[i];
i -= i & -i;
}
return sum;
}
int Rango(int i, int j) {
return Query(j) -
Query(i - 1);
}
};
int main() {
return 0;
}