#include <cstdio> #include <iostream> #include <algorithm> #include <set> #include <map> #include <stack> #include <list> #include <queue> #include <deque> #include <cctype> #include <string> #include <vector> #include <sstream> #include <iterator> #include <numeric> #include <cmath> using namespace std; typedef vector <int > VI; typedef vector < VI > VVI; typedef long long LL; typedef vector < LL > VLL; typedef vector < double > VD; typedef vector < string > VS; typedef pair<int,int> PII; typedef vector <PII> VPII; typedef istringstream ISS; #define ALL(x) x.begin(),x.end() #define REP(i,n) for (int i=0; i<(n); ++i) #define FOR(var,pocz,koniec) for (int var=(pocz); var<=(koniec); ++var) #define FORD(var,pocz,koniec) for (int var=(pocz); var>=(koniec); --var) #define FOREACH(it, X) for(__typeof((X).begin()) it = (X).begin(); it != (X).end(); ++it) #define PB push_back #define PF push_front #define MP(a,b) make_pair(a,b) #define ST first #define ND second #define SIZE(x) (int)x.size() const int N = 110 * 1010; const int MAX_LIST = N * 2 * 20; const int BASE = 1024 * 1024; int wsp[N][4]; int killed[N]; int drzewo[2*BASE]; //max int drzewo_ktory[2*BASE]; //ktory prostokat int drzewo_lista[2*BASE]; //numer na liscie int lista[MAX_LIST]; int lista_prev[MAX_LIST]; int lista_licznik; void init_tree() { REP(i,2*BASE) drzewo_ktory[i] = -1; REP(i,2*BASE) drzewo_lista[i] = -1; } //zwraca numer prostokata int znajdz_max(int i, int l, int r, int x) { //if (r < wsp[x][2] || wsp[x][3]-1 < l) return -1; int res = 0; int res_ktory = -1; if (drzewo_lista[i] >= 0) { res_ktory = lista[drzewo_lista[i]]; res = wsp[res_ktory][1]; } if (wsp[x][2] <= l && r <= wsp[x][3]-1) { if (drzewo[i] > res) res_ktory = drzewo_ktory[i]; } else { int m = (l + r) / 2; int cand = (wsp[x][2] <= m) ? znajdz_max(2*i, l, m, x) : -1; if (cand != -1 && wsp[cand][1] > res) { res = wsp[cand][1]; res_ktory = cand; } cand = (wsp[x][3]-1 > m) ? znajdz_max(2*i+1, m+1, r, x) : -1; if (cand != -1 && wsp[cand][1] > res) { res = wsp[cand][1]; res_ktory = cand; } } return res_ktory; } inline void ustaw_max(int i) { if (drzewo[2*i] > drzewo[i]) { drzewo[i] = drzewo[2*i]; drzewo_ktory[i] = drzewo_ktory[2*i]; } if (drzewo[2*i+1] > drzewo[i]) { drzewo[i] = drzewo[2*i+1]; drzewo_ktory[i] = drzewo_ktory[2*i+1]; } } void dodaj_do_drzewa(int i, int l, int r, int x) { // if (r < wsp[x][2] || wsp[x][3]-1 < l) return; if (wsp[x][2] <= l && r <= wsp[x][3]-1) { drzewo[i] = wsp[x][1]; drzewo_ktory[i] = x; lista[lista_licznik] = x; lista_prev[lista_licznik] = drzewo_lista[i]; drzewo_lista[i] = lista_licznik; lista_licznik++; } else { int m = (l + r) / 2; if (wsp[x][2] <= m) dodaj_do_drzewa(2*i, l, m, x); if (wsp[x][3]-1 > m) dodaj_do_drzewa(2*i+1, m+1, r, x); ustaw_max(i); } } void usun_z_drzewa(int i, int l, int r, int x) { // if (r < wsp[x][2] || wsp[x][3]-1 < l) return; if (wsp[x][2] <= l && r <= wsp[x][3]-1) { if (drzewo[i] != wsp[x][1]) { printf("ERROR, i=%d drzewo[i]=%d wsp[x][1]=%d x=%d\n", i, drzewo[i], wsp[x][1], x); } //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); drzewo_lista[i] = lista_prev[drzewo_lista[i]]; if (drzewo_lista[i] == -1) drzewo[i] = 0; else { drzewo_ktory[i] = lista[drzewo_lista[i]]; drzewo[i] = wsp[drzewo_ktory[i]][1]; } //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); if (i < BASE) ustaw_max(i); //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); } else { int m = (l + r) / 2; if (wsp[x][2] <= m) usun_z_drzewa(2*i, l, m, x); if (wsp[x][3]-1 > m) usun_z_drzewa(2*i+1, m+1, r, x); if (drzewo_lista[i] == -1) { drzewo[i] = 0; } else { drzewo_ktory[i] = lista[drzewo_lista[i]]; drzewo[i] = wsp[drzewo_ktory[i]][1]; } ustaw_max(i); } } int main(){ int n; scanf("%d",&n); REP(i,n) REP(j,4) scanf("%d",wsp[i]+j); VPII events; events.reserve(n); REP(i,n) events.PB(MP(wsp[i][0], i)); sort(ALL(events)); init_tree(); FOREACH(it, events) { int i = it->ND; //printf("i=%d it->ST=%d\n", i, it->ST); int last = -1; while (true) { int x = znajdz_max(1, 0, BASE-1, i); if (x != -1 && wsp[x][1] > wsp[i][0]) { if (x != last) { wsp[i][0] = min(wsp[i][0], wsp[x][0]); wsp[i][1] = max(wsp[i][1], wsp[x][1]); wsp[i][2] = min(wsp[i][2], wsp[x][2]); wsp[i][3] = max(wsp[i][3], wsp[x][3]); last = x; } else { killed[x] = 1; usun_z_drzewa(1, 0, BASE-1, x); } } else break; } dodaj_do_drzewa(1, 0, BASE-1, i); } VVI res; res.reserve(n); REP(i,n) if (!killed[i]) res.PB(VI(wsp[i], wsp[i]+4)); sort(ALL(res)); printf("%d\n", SIZE(res)); REP(i, SIZE(res)) printf("%d %d %d %d\n", res[i][0], res[i][1], res[i][2], res[i][3]); 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 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 | #include <cstdio> #include <iostream> #include <algorithm> #include <set> #include <map> #include <stack> #include <list> #include <queue> #include <deque> #include <cctype> #include <string> #include <vector> #include <sstream> #include <iterator> #include <numeric> #include <cmath> using namespace std; typedef vector <int > VI; typedef vector < VI > VVI; typedef long long LL; typedef vector < LL > VLL; typedef vector < double > VD; typedef vector < string > VS; typedef pair<int,int> PII; typedef vector <PII> VPII; typedef istringstream ISS; #define ALL(x) x.begin(),x.end() #define REP(i,n) for (int i=0; i<(n); ++i) #define FOR(var,pocz,koniec) for (int var=(pocz); var<=(koniec); ++var) #define FORD(var,pocz,koniec) for (int var=(pocz); var>=(koniec); --var) #define FOREACH(it, X) for(__typeof((X).begin()) it = (X).begin(); it != (X).end(); ++it) #define PB push_back #define PF push_front #define MP(a,b) make_pair(a,b) #define ST first #define ND second #define SIZE(x) (int)x.size() const int N = 110 * 1010; const int MAX_LIST = N * 2 * 20; const int BASE = 1024 * 1024; int wsp[N][4]; int killed[N]; int drzewo[2*BASE]; //max int drzewo_ktory[2*BASE]; //ktory prostokat int drzewo_lista[2*BASE]; //numer na liscie int lista[MAX_LIST]; int lista_prev[MAX_LIST]; int lista_licznik; void init_tree() { REP(i,2*BASE) drzewo_ktory[i] = -1; REP(i,2*BASE) drzewo_lista[i] = -1; } //zwraca numer prostokata int znajdz_max(int i, int l, int r, int x) { //if (r < wsp[x][2] || wsp[x][3]-1 < l) return -1; int res = 0; int res_ktory = -1; if (drzewo_lista[i] >= 0) { res_ktory = lista[drzewo_lista[i]]; res = wsp[res_ktory][1]; } if (wsp[x][2] <= l && r <= wsp[x][3]-1) { if (drzewo[i] > res) res_ktory = drzewo_ktory[i]; } else { int m = (l + r) / 2; int cand = (wsp[x][2] <= m) ? znajdz_max(2*i, l, m, x) : -1; if (cand != -1 && wsp[cand][1] > res) { res = wsp[cand][1]; res_ktory = cand; } cand = (wsp[x][3]-1 > m) ? znajdz_max(2*i+1, m+1, r, x) : -1; if (cand != -1 && wsp[cand][1] > res) { res = wsp[cand][1]; res_ktory = cand; } } return res_ktory; } inline void ustaw_max(int i) { if (drzewo[2*i] > drzewo[i]) { drzewo[i] = drzewo[2*i]; drzewo_ktory[i] = drzewo_ktory[2*i]; } if (drzewo[2*i+1] > drzewo[i]) { drzewo[i] = drzewo[2*i+1]; drzewo_ktory[i] = drzewo_ktory[2*i+1]; } } void dodaj_do_drzewa(int i, int l, int r, int x) { // if (r < wsp[x][2] || wsp[x][3]-1 < l) return; if (wsp[x][2] <= l && r <= wsp[x][3]-1) { drzewo[i] = wsp[x][1]; drzewo_ktory[i] = x; lista[lista_licznik] = x; lista_prev[lista_licznik] = drzewo_lista[i]; drzewo_lista[i] = lista_licznik; lista_licznik++; } else { int m = (l + r) / 2; if (wsp[x][2] <= m) dodaj_do_drzewa(2*i, l, m, x); if (wsp[x][3]-1 > m) dodaj_do_drzewa(2*i+1, m+1, r, x); ustaw_max(i); } } void usun_z_drzewa(int i, int l, int r, int x) { // if (r < wsp[x][2] || wsp[x][3]-1 < l) return; if (wsp[x][2] <= l && r <= wsp[x][3]-1) { if (drzewo[i] != wsp[x][1]) { printf("ERROR, i=%d drzewo[i]=%d wsp[x][1]=%d x=%d\n", i, drzewo[i], wsp[x][1], x); } //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); drzewo_lista[i] = lista_prev[drzewo_lista[i]]; if (drzewo_lista[i] == -1) drzewo[i] = 0; else { drzewo_ktory[i] = lista[drzewo_lista[i]]; drzewo[i] = wsp[drzewo_ktory[i]][1]; } //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); if (i < BASE) ustaw_max(i); //printf("usuwam x=%d drzewo=%d drzewo_ktory=%d drzewo_lista=%d\n", x, drzewo[i], drzewo_ktory[i], drzewo_lista[i]); } else { int m = (l + r) / 2; if (wsp[x][2] <= m) usun_z_drzewa(2*i, l, m, x); if (wsp[x][3]-1 > m) usun_z_drzewa(2*i+1, m+1, r, x); if (drzewo_lista[i] == -1) { drzewo[i] = 0; } else { drzewo_ktory[i] = lista[drzewo_lista[i]]; drzewo[i] = wsp[drzewo_ktory[i]][1]; } ustaw_max(i); } } int main(){ int n; scanf("%d",&n); REP(i,n) REP(j,4) scanf("%d",wsp[i]+j); VPII events; events.reserve(n); REP(i,n) events.PB(MP(wsp[i][0], i)); sort(ALL(events)); init_tree(); FOREACH(it, events) { int i = it->ND; //printf("i=%d it->ST=%d\n", i, it->ST); int last = -1; while (true) { int x = znajdz_max(1, 0, BASE-1, i); if (x != -1 && wsp[x][1] > wsp[i][0]) { if (x != last) { wsp[i][0] = min(wsp[i][0], wsp[x][0]); wsp[i][1] = max(wsp[i][1], wsp[x][1]); wsp[i][2] = min(wsp[i][2], wsp[x][2]); wsp[i][3] = max(wsp[i][3], wsp[x][3]); last = x; } else { killed[x] = 1; usun_z_drzewa(1, 0, BASE-1, x); } } else break; } dodaj_do_drzewa(1, 0, BASE-1, i); } VVI res; res.reserve(n); REP(i,n) if (!killed[i]) res.PB(VI(wsp[i], wsp[i]+4)); sort(ALL(res)); printf("%d\n", SIZE(res)); REP(i, SIZE(res)) printf("%d %d %d %d\n", res[i][0], res[i][1], res[i][2], res[i][3]); return 0; } |