#include<bits/stdc++.h> using namespace std; //g++ -O3 -static 5B_bal/5B_bal.cpp -std=c++11 -o 5B_bal/5b_bal /* 4 3 4 1 2 4 2 3 1 3 4 3 2 3 2 4 4 3 2 4 3 4 4 */ bool bit[2010][2010]; int row[2010], col[2010]; int n; int rn, r0, cn, c0, suma; void update(int x, int y, bool b){ if(b){ if(row[x] == n){ rn --; } row[x]--; if(row[x] == 0){ r0 ++; } if(col[y] == n){ cn --; } col[y]--; if(col[y] == 0){ c0 ++; } suma--; }else{ if(row[x] == 0){ r0 --; } row[x]++; if(row[x] == n){ rn ++; } if(col[y] == 0){ c0 --; } col[y]++; if(col[y] == n){ cn ++; } suma++; } } int score(){ int set = suma; int unset = n * n - set; set -= rn * cn; unset -= r0 * c0; return min(set, unset); } void change_bit(int x, int y){ if(x < 0 || y < 0){ return; } bit[x][y] = 1 - bit[x][y]; } bool get_bit(int x, int y){ if(x >= n || y >= n){ return false; } return bit[x][y]; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int m, q; cin >> n >> m >> q; for(int i = 0; i < m; i++){ int x[2], y[2]; cin >> x[0] >> y[0] >> x[1] >> y[1]; x[0]-=2; x[1]--; y[0]-=2; y[1]--; change_bit(x[0], y[0]); change_bit(x[0], y[1]); change_bit(x[1], y[0]); change_bit(x[1], y[1]); } for(int i = n-1; i >= 0; i--){ for(int j = n-1; j >= 0; j--){ bit[i][j] ^= get_bit(i+1, j) ^ get_bit(i, j+1) ^ get_bit(i+1, j+1); row[i] += bit[i][j]; col[j] += bit[i][j]; suma += bit[i][j]; } } for(int i = 0; i < n; i++){ if(row[i] == n){ rn ++; } if(row[i] == 0){ r0 ++; } if(col[i] == n){ cn ++; } if(col[i] == 0){ c0 ++; } } cout << score() << "\n"; for(int i = 0; i < q; i++){ int x, y; cin >> x >> y; x--; y--; update(x, y, bit[x][y]); bit[x][y] = 1 - bit[x][y]; cout << score() << "\n"; } return 0; }
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 | #include<bits/stdc++.h> using namespace std; //g++ -O3 -static 5B_bal/5B_bal.cpp -std=c++11 -o 5B_bal/5b_bal /* 4 3 4 1 2 4 2 3 1 3 4 3 2 3 2 4 4 3 2 4 3 4 4 */ bool bit[2010][2010]; int row[2010], col[2010]; int n; int rn, r0, cn, c0, suma; void update(int x, int y, bool b){ if(b){ if(row[x] == n){ rn --; } row[x]--; if(row[x] == 0){ r0 ++; } if(col[y] == n){ cn --; } col[y]--; if(col[y] == 0){ c0 ++; } suma--; }else{ if(row[x] == 0){ r0 --; } row[x]++; if(row[x] == n){ rn ++; } if(col[y] == 0){ c0 --; } col[y]++; if(col[y] == n){ cn ++; } suma++; } } int score(){ int set = suma; int unset = n * n - set; set -= rn * cn; unset -= r0 * c0; return min(set, unset); } void change_bit(int x, int y){ if(x < 0 || y < 0){ return; } bit[x][y] = 1 - bit[x][y]; } bool get_bit(int x, int y){ if(x >= n || y >= n){ return false; } return bit[x][y]; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int m, q; cin >> n >> m >> q; for(int i = 0; i < m; i++){ int x[2], y[2]; cin >> x[0] >> y[0] >> x[1] >> y[1]; x[0]-=2; x[1]--; y[0]-=2; y[1]--; change_bit(x[0], y[0]); change_bit(x[0], y[1]); change_bit(x[1], y[0]); change_bit(x[1], y[1]); } for(int i = n-1; i >= 0; i--){ for(int j = n-1; j >= 0; j--){ bit[i][j] ^= get_bit(i+1, j) ^ get_bit(i, j+1) ^ get_bit(i+1, j+1); row[i] += bit[i][j]; col[j] += bit[i][j]; suma += bit[i][j]; } } for(int i = 0; i < n; i++){ if(row[i] == n){ rn ++; } if(row[i] == 0){ r0 ++; } if(col[i] == n){ cn ++; } if(col[i] == 0){ c0 ++; } } cout << score() << "\n"; for(int i = 0; i < q; i++){ int x, y; cin >> x >> y; x--; y--; update(x, y, bit[x][y]); bit[x][y] = 1 - bit[x][y]; cout << score() << "\n"; } return 0; } |