-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMATSUM.cpp
59 lines (59 loc) · 1.59 KB
/
MATSUM.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
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/MATSUM/
#include <cstring>
#include <iostream>
#include <string>
#define MAXN 1037
#define LSOne(S) (S & (-S))
#define endl '\n'
int bit[MAXN][MAXN], a[MAXN][MAXN];
using namespace std;
void update(int r, int c, int val) {
for (int i = r; i <= MAXN; i += i & -i)
for (int j = c; j <= MAXN; j += j & -j) bit[i][j] += val;
}
int sum(int r, int c) {
int s = 0;
for (int i = r; i > 0; i &= i - 1)
for (int j = c; j > 0; j &= j - 1) s += bit[i][j];
return s;
}
int main() {
cin.tie(0);
ios_base::sync_with_stdio(0);
int casos;
cin >> casos;
string atualizar = "SET", somar = "SUM", fim = "END";
while (casos--) {
memset(a, 0, sizeof(a));
memset(bit, 0, sizeof(bit));
string op;
int dummy;
cin >> dummy;
while (cin >> op) {
if (op == fim) break;
// cout << op << endl;
if (op == atualizar) {
// cout << "Atualizar" << endl;
int x, y, num;
cin >> x >> y >> num;
x++;
y++;
update(x, y, num - a[x][y]);
a[x][y] = num;
} else {
int x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
x1++;
y1++;
x2++;
y2++;
cout << sum(x2, y2) + sum(x1 - 1, y1 - 1) - sum(x2, y1 - 1) -
sum(x1 - 1, y2)
<< endl;
}
}
cout << endl;
}
return 0;
}