-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fenwick Tree( ABI )_1850 Caribbean Online Judge.cpp
62 lines (56 loc) · 1.29 KB
/
Fenwick Tree( ABI )_1850 Caribbean Online Judge.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
/***
Marlon A. Espinosa Castañeiras
Estructura: Árbol Binario Indexado(ABI) o Fenwick Tree
Descripción: Sirve para hacer una tabla acumulativa y responder
preguntas a sumas en un rango [A,B] en tiempo logaritmico
y además actualiza la TA en una posición determinada
en tiempo logaritmico también.
Fecha: 3/03/ 2013
Hora: 2:55 pm
Refernecias: Problema 1850 del Cariben Online Judge(COJ).
y la otra version que tambien está en COJ.
***/
#include <cstdio>
#include <vector>
#include <iostream>
#define max 10005
using namespace std;
vector<int> create(int n){ return vector<int> (n,0);}
vector<int> tree;
int query( int a, int b)
{
if(a == 0){
int sum = 0;
for(; b >= 0; b = (b & (b + 1)) - 1)
sum += tree[b];
return sum;
}
else{
return query(0, b) - query(0, a - 1);
}
}
void update( int k, int inc)
{
for(;k < (int)tree.size();k |= k + 1)
tree[k] += inc;
}
int main()
{
int n, u, q, p, k;
cin>> n;
tree = create(max);
cin>> u>> q;
for(int i = 0;i < u;i++){
cin>> p>> k;
update(p + 1, k);
update(p - 1, k);
update(p, k + 1);
}
for(int i = 0;i < q;i++){
cin>> p >> k;
cout<< query(p, k)<<endl;
}
//for(;n < 100;n |= n + 1)
//cout<< n<<" ";
return 0;
}