forked from mpfeifer1/Kattis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupercomputer.cpp
55 lines (45 loc) · 1.08 KB
/
supercomputer.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
#include <iostream>
#include <vector>
using namespace std;
int sum(vector<int>& fenwick, int index) {
int total = 0;
for(int i = index; i > 0; i &= i-1) {
total += fenwick[i-1];
}
return total;
}
void update(vector<int>& fenwick, int index, int value) {
for(int i = index; i < fenwick.size(); i |= i+1) {
fenwick[i] += value;
}
}
int getval(vector<int>& fenwick, int index) {
return sum(fenwick, index+1) - sum(fenwick, index);
}
int main() {
int n, k;
cin >> n >> k;
vector<int> fenwick(n+1, 0);
for(int i = 0; i < k; i++) {
char c;
cin >> c;
if(c == 'F') {
int x;
cin >> x;
int val = getval(fenwick, x);
if(val == 0) {
val = 1;
}
else {
val = -1;
}
update(fenwick, x, val);
val = getval(fenwick, x);
}
if(c == 'C') {
int x, y;
cin >> x >> y;
cout << sum(fenwick, y+1) - sum(fenwick, x) << endl;
}
}
}