#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <array> #include <random> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <climits> #include <stack> #include <random> #include <bitset> #include <numeric> #include <cassert> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; #define rep(x, b, e) for(int x=(b); x<(e); ++x) #define trav(a, x) for(auto& a : x) #define ford(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define all(c) c.begin(),c.end() #define sz(x) ((int)((x).size())) #define pb push_back #define st first #define nd second #define mp(x,y) make_pair(x,y) typedef short int sint; #define imie(...) " [" << #__VA_ARGS__ ": " << (__VA_ARGS__) << "] " // bool dbg = false; int n, m; int P; struct Node { int dl, sum; bool toFlip; Node() { dl=sum=toFlip=0; } Node(int _dl): dl(_dl), sum(0), toFlip(false) { } int ile() { if (toFlip) return dl - sum; return sum; } }; vector<Node> tree; // void print() { // if (!dbg) return; // printf("----TREE STATE ----\n"); // rep(i, 1, 2*P) { // printf("\tTree[%d] = %d, %d, %d\n", i, tree[i].dl, tree[i].sum, tree[i].toFlip); // } // } void recalc(int index) { // printf("recalc(%d)\n", index); // print(); if (index < P) { tree[index].sum = tree[2*index].ile() + tree[2*index+1].ile(); } else { tree[index].sum = tree[index].toFlip; } } void prop(int index) { if (index >= P) { return ; } if (!tree[index].toFlip) { return; } tree[index].toFlip = false; tree[2*index].toFlip ^= 1; tree[2*index + 1].toFlip ^= 1; recalc(index); } void chg(int st, int en, int p = 1, int q = P, int index = 1) { // if (dbg) printf("\t\t\tchg(%d, %d, %d, %d, %d)\n", st, en, p, q, index); int sr = (p + q) / 2; if (st == p && en == q) { // dokladnie moj przedzial if (index >= P) { tree[index].sum = 1 - tree[index].sum; } else { tree[index].toFlip ^= 1; } return ; } prop(index); if (en <= sr) chg(st, en, p, sr, 2*index); else if (st > sr) chg(st, en, sr+1, q, 2*index + 1); else { chg(st, sr, p, sr, 2*index); chg(sr+1,en,sr+1,q,2*index + 1); } recalc(index); } int val(int p, int q, int pocz = 1, int kon = P, int index = 1) { // if (dbg) printf("\t\t\tval(%d, %d, %d, %d, %d)\n", p, q, pocz, kon, index); int sr = (pocz + kon) / 2; prop(index); if (p == pocz && q == kon) { return tree[index].ile(); } if (q <= sr) return val(p, q, pocz, sr, 2*index); else if (p > sr) return val(p, q, sr+1, kon, 2*index + 1); else return val(p,sr,pocz,sr,2*index) + val(sr+1,q,sr+1,kon,2*index+1); } // void printEvents(vector<pair<pii, pii>> &ev) { // if (!dbg) return; // printf("EVENTS: \n"); // trav(e, ev) { // printf("%d %d %d %d\n", e.st.st, e.st.nd, e.nd.st, e.nd.nd); // } // } pair<vi, map<pii, int>> zamiec(vector<pair<pii, pii>>& ev, vector<pii> &pts) { sort(all(ev)); sort(all(pts)); // printEvents(ev); vi sum(n + 1); map<pii, int> t; int w1 = 0, w2 = 0; P = 1; while (P < n) { P <<= 1; } tree.resize(2 * P); rep(i, 1, n + 1) { tree[P + i - 1] = Node(1); } rep(i, n+1, P) { tree[P + i - 1] = Node(0); } ford(i, P, 1) { tree[i].dl = tree[2*i].dl + tree[2*i + 1].dl; tree[i].sum = tree[i].toFlip =0; } // print(); rep(coordinate, 1, n + 1) { // if (dbg) printf("\t=====coord: %d\n", coordinate); while (w1 < sz(ev) && ev[w1].st.st == coordinate) { // printf("\t\tchg(%d, %d)\n", ev[w1].nd.st, ev[w1].nd.nd); chg(ev[w1].nd.st, ev[w1].nd.nd); // print(); // printf("\t\tSum[%d] = %d\n", coordinate, val(1, n)); ++w1; } while (w2 < sz(pts) && pts[w2].st == coordinate) { t[mp(pts[w2].nd, pts[w2].st)] = val(pts[w2].nd, pts[w2].nd); // printf("\t\tquery at: %d = %d\n", pts[w2].nd, val(pts[w2].nd, pts[w2].nd)); ++w2; } sum[coordinate] = val(1, n); // printf("\t\tFinal sum[%d] = %d\n", coordinate, sum[coordinate]); } return mp(sum, t); } int main() { ios_base::sync_with_stdio(false); cin.tie(0); // zamiatanie -> // zamiatanie w dol // pilnowanie jakie sa wartosci dla punktow na wejsciu // do obliczenia rozwiazania skopiowac bruta po zamiataniu :) // output: rows[i] <- ile zapalonych w tym row //. cols[i] <- ile zapalonych w tym col //. t[x][y] <- dla wierzcholkow z zapytan int q; scanf("%d %d %d", &n, &m, &q); vector<pair<pii, pii>> eventsR, eventsC; rep(i, 0, m) { int x1, y1, x2, y2; scanf("%d %d %d %d",&x1, &y1, &x2, &y2); eventsR.pb(mp( mp( y1, 1 ), mp( x1, x2 ) )); eventsR.pb(mp( mp( y2 + 1, -1 ), mp( x1, x2) )); eventsC.pb(mp( mp( x1, 1 ), mp(y1, y2))); eventsC.pb(mp( mp( x2+1,-1 ), mp( y1, y2 ))); } vector<pii> interesting, not_interesting; vector<pii> queries; rep(i, 0, q) { int x, y; scanf("%d %d", &x, &y); queries.pb(mp(x, y)); interesting.pb(mp(y, x)); } auto result = zamiec(eventsR, interesting); auto result2 = zamiec(eventsC, not_interesting); auto cols = result.st; auto rows = result2.st; auto pts = result.nd; // if (dbg) { // printf("rows: "); // trav(row, rows) { // printf("%d ", row); // } // printf("\n"); // printf("cols: "); // trav(col, cols) { // printf("%d ", col); // } // printf("\n"); // trav(pt, pts) { // printf("t[%d][%d] = %d\n", pt.st.st, pt.st.nd, pt.nd); // } // } vi colH(n + 1), rowH(n + 1); ll zap = 0; rep(i, 1, n + 1) { ++rowH[rows[i]]; ++colH[cols[i]]; zap += rows[i]; } ll total = (ll)n * n; // auto print = [&](){ // printf("\tSTAN\n"); // rep(i,0,n) { // rep(j, 0,n) { // printf("%d", t[i][j]); // } // printf("\n"); // } // }; // auto printState = [&](){ // printf("rows: "); trav(r, rows) printf("%d ", r); printf("\n"); // printf("cols: "); trav(c, cols) printf("%d ", c); printf("\n"); // printf("histRow:\n"); // rep(i, 0, n + 1) { // printf("\thistRow[%d] = %d\n", i, rowH[i]); // } // printf("histCol:\n"); // rep(i, 0, n + 1) { // printf("\thistCol[%d] = %d\n", i, colH[i]); // } // }; auto compute = [&](){ // print(); ll zMatch = zap - (ll)rowH[n]*colH[n]; ll outMatch = (total - zap) - (ll)rowH[0] * colH[0]; // printf("zap: %d, %d, zgasz: %d, %d\n", rowH[n], colH[n], rowH[0], colH[0]); // printf("zMatch: %lld, outMatch: %lld\n", zMatch, outMatch); return min(zMatch, outMatch); }; printf("%lld\n", compute()); rep(i, 0, q) { int x, y; x = queries[i].st; y = queries[i].nd; // if (dbg)printf("q: %d, %d, in row: %d, in col: %d\n", x, y, rows[x], cols[y]); // printState(); --rowH[rows[x]]; --colH[cols[y]]; if (pts[mp(x, y)]) { // if (dbg)printf("gasze\n"); // gasze --zap; --rows[x]; --cols[y]; } else { // if (dbg)printf("zapalam\n"); ++zap; ++rows[x]; ++cols[y]; } ++rowH[rows[x]]; ++colH[cols[y]]; pts[mp(x, y)] ^= 1; printf("%lld\n", compute()); } }
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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> #include <set> #include <map> #include <array> #include <random> #include <cmath> #include <list> #include <ctime> #include <sstream> #include <queue> #include <climits> #include <stack> #include <random> #include <bitset> #include <numeric> #include <cassert> using namespace std; typedef vector<int> vi; typedef pair<int,int> pii; typedef long long ll; #define rep(x, b, e) for(int x=(b); x<(e); ++x) #define trav(a, x) for(auto& a : x) #define ford(x, b, e) for(int x=((int)(b))-1; x>=(e); --x) #define all(c) c.begin(),c.end() #define sz(x) ((int)((x).size())) #define pb push_back #define st first #define nd second #define mp(x,y) make_pair(x,y) typedef short int sint; #define imie(...) " [" << #__VA_ARGS__ ": " << (__VA_ARGS__) << "] " // bool dbg = false; int n, m; int P; struct Node { int dl, sum; bool toFlip; Node() { dl=sum=toFlip=0; } Node(int _dl): dl(_dl), sum(0), toFlip(false) { } int ile() { if (toFlip) return dl - sum; return sum; } }; vector<Node> tree; // void print() { // if (!dbg) return; // printf("----TREE STATE ----\n"); // rep(i, 1, 2*P) { // printf("\tTree[%d] = %d, %d, %d\n", i, tree[i].dl, tree[i].sum, tree[i].toFlip); // } // } void recalc(int index) { // printf("recalc(%d)\n", index); // print(); if (index < P) { tree[index].sum = tree[2*index].ile() + tree[2*index+1].ile(); } else { tree[index].sum = tree[index].toFlip; } } void prop(int index) { if (index >= P) { return ; } if (!tree[index].toFlip) { return; } tree[index].toFlip = false; tree[2*index].toFlip ^= 1; tree[2*index + 1].toFlip ^= 1; recalc(index); } void chg(int st, int en, int p = 1, int q = P, int index = 1) { // if (dbg) printf("\t\t\tchg(%d, %d, %d, %d, %d)\n", st, en, p, q, index); int sr = (p + q) / 2; if (st == p && en == q) { // dokladnie moj przedzial if (index >= P) { tree[index].sum = 1 - tree[index].sum; } else { tree[index].toFlip ^= 1; } return ; } prop(index); if (en <= sr) chg(st, en, p, sr, 2*index); else if (st > sr) chg(st, en, sr+1, q, 2*index + 1); else { chg(st, sr, p, sr, 2*index); chg(sr+1,en,sr+1,q,2*index + 1); } recalc(index); } int val(int p, int q, int pocz = 1, int kon = P, int index = 1) { // if (dbg) printf("\t\t\tval(%d, %d, %d, %d, %d)\n", p, q, pocz, kon, index); int sr = (pocz + kon) / 2; prop(index); if (p == pocz && q == kon) { return tree[index].ile(); } if (q <= sr) return val(p, q, pocz, sr, 2*index); else if (p > sr) return val(p, q, sr+1, kon, 2*index + 1); else return val(p,sr,pocz,sr,2*index) + val(sr+1,q,sr+1,kon,2*index+1); } // void printEvents(vector<pair<pii, pii>> &ev) { // if (!dbg) return; // printf("EVENTS: \n"); // trav(e, ev) { // printf("%d %d %d %d\n", e.st.st, e.st.nd, e.nd.st, e.nd.nd); // } // } pair<vi, map<pii, int>> zamiec(vector<pair<pii, pii>>& ev, vector<pii> &pts) { sort(all(ev)); sort(all(pts)); // printEvents(ev); vi sum(n + 1); map<pii, int> t; int w1 = 0, w2 = 0; P = 1; while (P < n) { P <<= 1; } tree.resize(2 * P); rep(i, 1, n + 1) { tree[P + i - 1] = Node(1); } rep(i, n+1, P) { tree[P + i - 1] = Node(0); } ford(i, P, 1) { tree[i].dl = tree[2*i].dl + tree[2*i + 1].dl; tree[i].sum = tree[i].toFlip =0; } // print(); rep(coordinate, 1, n + 1) { // if (dbg) printf("\t=====coord: %d\n", coordinate); while (w1 < sz(ev) && ev[w1].st.st == coordinate) { // printf("\t\tchg(%d, %d)\n", ev[w1].nd.st, ev[w1].nd.nd); chg(ev[w1].nd.st, ev[w1].nd.nd); // print(); // printf("\t\tSum[%d] = %d\n", coordinate, val(1, n)); ++w1; } while (w2 < sz(pts) && pts[w2].st == coordinate) { t[mp(pts[w2].nd, pts[w2].st)] = val(pts[w2].nd, pts[w2].nd); // printf("\t\tquery at: %d = %d\n", pts[w2].nd, val(pts[w2].nd, pts[w2].nd)); ++w2; } sum[coordinate] = val(1, n); // printf("\t\tFinal sum[%d] = %d\n", coordinate, sum[coordinate]); } return mp(sum, t); } int main() { ios_base::sync_with_stdio(false); cin.tie(0); // zamiatanie -> // zamiatanie w dol // pilnowanie jakie sa wartosci dla punktow na wejsciu // do obliczenia rozwiazania skopiowac bruta po zamiataniu :) // output: rows[i] <- ile zapalonych w tym row //. cols[i] <- ile zapalonych w tym col //. t[x][y] <- dla wierzcholkow z zapytan int q; scanf("%d %d %d", &n, &m, &q); vector<pair<pii, pii>> eventsR, eventsC; rep(i, 0, m) { int x1, y1, x2, y2; scanf("%d %d %d %d",&x1, &y1, &x2, &y2); eventsR.pb(mp( mp( y1, 1 ), mp( x1, x2 ) )); eventsR.pb(mp( mp( y2 + 1, -1 ), mp( x1, x2) )); eventsC.pb(mp( mp( x1, 1 ), mp(y1, y2))); eventsC.pb(mp( mp( x2+1,-1 ), mp( y1, y2 ))); } vector<pii> interesting, not_interesting; vector<pii> queries; rep(i, 0, q) { int x, y; scanf("%d %d", &x, &y); queries.pb(mp(x, y)); interesting.pb(mp(y, x)); } auto result = zamiec(eventsR, interesting); auto result2 = zamiec(eventsC, not_interesting); auto cols = result.st; auto rows = result2.st; auto pts = result.nd; // if (dbg) { // printf("rows: "); // trav(row, rows) { // printf("%d ", row); // } // printf("\n"); // printf("cols: "); // trav(col, cols) { // printf("%d ", col); // } // printf("\n"); // trav(pt, pts) { // printf("t[%d][%d] = %d\n", pt.st.st, pt.st.nd, pt.nd); // } // } vi colH(n + 1), rowH(n + 1); ll zap = 0; rep(i, 1, n + 1) { ++rowH[rows[i]]; ++colH[cols[i]]; zap += rows[i]; } ll total = (ll)n * n; // auto print = [&](){ // printf("\tSTAN\n"); // rep(i,0,n) { // rep(j, 0,n) { // printf("%d", t[i][j]); // } // printf("\n"); // } // }; // auto printState = [&](){ // printf("rows: "); trav(r, rows) printf("%d ", r); printf("\n"); // printf("cols: "); trav(c, cols) printf("%d ", c); printf("\n"); // printf("histRow:\n"); // rep(i, 0, n + 1) { // printf("\thistRow[%d] = %d\n", i, rowH[i]); // } // printf("histCol:\n"); // rep(i, 0, n + 1) { // printf("\thistCol[%d] = %d\n", i, colH[i]); // } // }; auto compute = [&](){ // print(); ll zMatch = zap - (ll)rowH[n]*colH[n]; ll outMatch = (total - zap) - (ll)rowH[0] * colH[0]; // printf("zap: %d, %d, zgasz: %d, %d\n", rowH[n], colH[n], rowH[0], colH[0]); // printf("zMatch: %lld, outMatch: %lld\n", zMatch, outMatch); return min(zMatch, outMatch); }; printf("%lld\n", compute()); rep(i, 0, q) { int x, y; x = queries[i].st; y = queries[i].nd; // if (dbg)printf("q: %d, %d, in row: %d, in col: %d\n", x, y, rows[x], cols[y]); // printState(); --rowH[rows[x]]; --colH[cols[y]]; if (pts[mp(x, y)]) { // if (dbg)printf("gasze\n"); // gasze --zap; --rows[x]; --cols[y]; } else { // if (dbg)printf("zapalam\n"); ++zap; ++rows[x]; ++cols[y]; } ++rowH[rows[x]]; ++colH[cols[y]]; pts[mp(x, y)] ^= 1; printf("%lld\n", compute()); } } |