-
Notifications
You must be signed in to change notification settings - Fork 20
/
Partial_Sum_2D.cpp
executable file
·85 lines (72 loc) · 2.43 KB
/
Partial_Sum_2D.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
#include <bits/stdc++.h>
using namespace std;
#define cin_2d(vec, n, m) for(int i = 0; i < n; i++) for(int j = 0; j < m && cin >> vec[i][j]; j++);
#define cout_2d(vec, n, m) for(int i = 0; i < n; i++, cout << "\n") for(int j = 0; j < m && cout << vec[i][j] << " "; j++);
#define fixed(n) fixed << setprecision(n)
#define ceil(n, m) (((n) / (m)) + ((n) % (m) ? 1 : 0))
#define fill(vec, value) memset(vec, value, sizeof(vec));
#define mul_mod(a, b, m) (((a % m) * (b % m)) % m)
#define add_mod(a, b, m) (((a % m) + (b % m)) % m)
#define all(vec) vec.begin(), vec.end()
#define rall(vec) vec.rbegin(), vec.rend()
#define sz(x) int(x.size())
#define debug(x) cout << #x << ": " << (x) << "\n";
#define fi first
#define se second
#define ll long long
#define ull unsigned long long
#define Mod 1'000'000'007
#define OO 2'000'000'000
#define EPS 1e-9
#define PI acos(-1)
template < typename T = int > using Pair = pair < T, T >;
vector < string > RET = {"NO", "YES"};
template < typename T = int > istream& operator >> (istream &in, vector < T > &v) {
for (auto &x : v) in >> x;
return in;
}
template < typename T = int > ostream& operator << (ostream &out, const vector < T > &v) {
for (const T &x : v) out << x << ' ';
return out;
}
template < typename T = int > struct Partial_2D {
vector < vector < T > > partial;
int n, m;
Partial_2D(int N, int M){
n = N, m = M;
partial.assign(n + 5, vector < T > (m + 5));
}
void build_partial(int queries){
while(queries--){
int x1, y1, x2, y2, k = 1;
cin >> x1 >> y1 >> x2 >> y2;
if(x1 > x2) swap(x1, x2);
if(y1 > y2) swap(y1, y2);
partial[x2][y2] += k, partial[x2][y1 - 1] -= k;
partial[x1 - 1][y2] -= k, partial[x1 - 1][y1 - 1] += k;
}
for(int i = n; i >= 0; i--)
for(int j = m; j >= 0; j--)
partial[i][j] += partial[i][j + 1];
for(int i = n; i >= 0; i--)
for(int j = m; j >= 0; j--)
partial[i][j] += partial[i + 1][j];
}
T get(int x, int y){
return partial[x][y];
}
void print(){
for(int i = 1; i <= n; i++, cout << "\n")
for(int j = 1; j <= m && cout << partial[i][j] << " "; j++);
}
};
void Solve(){
}
int main(){
ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int t = 1;
//cin >> t;
while(t--)
Solve();
return 0;
}