#include<cstdio> #include<iostream> #include<algorithm> #include<vector> #include<tr1/unordered_map> #include<queue> #include<cstdlib> #include<list> #include<set> #include<map> #include<cmath> #define MP make_pair #define PB push_back #define s second #define f first #define PII pair<int,int> #define VPII vector <pair<int,int> > #define VI vector <int> #define abs(a) max((a),-(a)) #define LL long long #define LD long double #define ALL(x) x.begin(),x.end() #define PU putchar_unlocked #define GU getchar_unlocked #define DBG(x) cerr<<#x<<" "<<(x)<<endl; using namespace std; int c,d,e,f,n,m,mx,l,r,k; int wynik; char ch; int INF=1e9+1; const int MXN=1e5+4; void insert(int a,PII co);//a to y, co to (x,i) void erase(int a,PII co);//a to y, co to (x,i) int query(int a,int b,int mi,int mx);//a i b to y1,y2, mi to minimalna xowa, mx to maksymalna struct prostokat { int i; int x1,x2,y1,y2; bool ok; void czytaj() { scanf("%d%d%d%d",&x1,&x2,&y1,&y2); /* x1*=2; x2*=2; y1*=2; y2*=2; */ } void add() { // insert(y1,MP(x1,i)); insert(y1,MP(x2,i)); // insert(y2,MP(x1,i)); insert(y2,MP(x2,i)); } } a,b,t[MXN*2]; prostokat operator+(prostokat a,prostokat b) { prostokat ret; ret.x1=min(a.x1,b.x1); ret.x2=max(a.x2,b.x2); ret.y1=min(a.y1,b.y1); ret.y2=max(a.y2,b.y2); return ret; } pair< PII , PII > operator+(pair< PII , PII > a,pair< PII , PII > b) { a.f.f=min(a.f.f,b.f.f); a.s.f=min(a.s.f,b.s.f); a.f.s=max(a.f.s,b.f.s); a.s.s=max(a.s.s,b.s.s); return a; } bool wspolne( pair< PII , PII > a,pair< PII , PII > b) { if(a.f.f==b.f.f&&a.f.s==b.f.s&&b.s.f==a.s.f&&a.s.s==b.s.s)return 1; if(a.f.f>=b.f.s||b.f.f>=a.f.s)return 0; if(a.s.f>=b.s.s||b.s.f>=a.s.s)return 0; return 1; } priority_queue < PII, vector< PII > , greater< PII > > poc,kon; void solve() { scanf("%d",&n); for(int i=1;i<=n;i++) { t[i].i=i; t[i].ok=1; t[i].czytaj(); poc.push(MP(t[i].x1,i)); kon.push(MP(t[i].x2,i)); } while(kon.size()) { while(poc.size()&&poc.top().f<kon.top().f) { d=poc.top().s; poc.pop(); t[d].add(); } d=kon.top().s; kon.pop(); if(t[d].ok==0)continue; c=query(t[d].y1+1,t[d].y2-1,t[d].x1+1,INF); if(c==-1) { continue; } t[d].ok=0; t[c].ok=0; n++; t[n]=t[d]+t[c]; t[n].i=n; t[n].ok=1; kon.push(MP(t[n].x2,n)); d=n; t[d].add(); } vector< pair < PII , PII > > out,out2; for(int i=1;i<=n;i++) { if(t[i].ok)out.PB(MP(MP(t[i].y1,t[i].y2),MP(t[i].x1,t[i].x2))); } sort(ALL(out)); for(int i=0;i<out.size();i++) { while(i+1<out.size()&&wspolne(out[i],out[i+1])) { out[i+1]=out[i]+out[i+1]; i++; } out2.PB(MP(out[i].s,out[i].f)); } sort(ALL(out2)); printf("%d\n",(int)out2.size()); for(int i=0;i<out2.size();i++) { printf("%d %d %d %d\n",out2[i].f.f,out2[i].f.s,out2[i].s.f,out2[i].s.s); } } main()//uwaga na y1=0 { solve(); } const int BASE=(1<<20); priority_queue < PII > S[BASE*2]; //set < PII > ::iterator it; void insert(int a,PII co) { a+=BASE; while(a) { S[a].push(co); a/=2; } } int query(int a,int b,int mi,int mx)//a i b to y1,y2, mi to minimalna xowa, mx to maksymalna { if(a>b||mi>mx)return -1; a+=BASE-1; b+=BASE+1; while(a/2!=b/2) { if(a%2==0) { while(S[a+1].size()) { if(t[S[a+1].top().s].ok==0) { S[a+1].pop(); continue; } if(S[a+1].top().f<mi)break; return S[a+1].top().s; } } if(b%2==1) { while(S[b-1].size()) { if(t[S[b-1].top().s].ok==0) { S[b-1].pop(); continue; } if(S[b-1].top().f<mi)break; return S[b-1].top().s; } } a/=2; b/=2; } return -1; }
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 | #include<cstdio> #include<iostream> #include<algorithm> #include<vector> #include<tr1/unordered_map> #include<queue> #include<cstdlib> #include<list> #include<set> #include<map> #include<cmath> #define MP make_pair #define PB push_back #define s second #define f first #define PII pair<int,int> #define VPII vector <pair<int,int> > #define VI vector <int> #define abs(a) max((a),-(a)) #define LL long long #define LD long double #define ALL(x) x.begin(),x.end() #define PU putchar_unlocked #define GU getchar_unlocked #define DBG(x) cerr<<#x<<" "<<(x)<<endl; using namespace std; int c,d,e,f,n,m,mx,l,r,k; int wynik; char ch; int INF=1e9+1; const int MXN=1e5+4; void insert(int a,PII co);//a to y, co to (x,i) void erase(int a,PII co);//a to y, co to (x,i) int query(int a,int b,int mi,int mx);//a i b to y1,y2, mi to minimalna xowa, mx to maksymalna struct prostokat { int i; int x1,x2,y1,y2; bool ok; void czytaj() { scanf("%d%d%d%d",&x1,&x2,&y1,&y2); /* x1*=2; x2*=2; y1*=2; y2*=2; */ } void add() { // insert(y1,MP(x1,i)); insert(y1,MP(x2,i)); // insert(y2,MP(x1,i)); insert(y2,MP(x2,i)); } } a,b,t[MXN*2]; prostokat operator+(prostokat a,prostokat b) { prostokat ret; ret.x1=min(a.x1,b.x1); ret.x2=max(a.x2,b.x2); ret.y1=min(a.y1,b.y1); ret.y2=max(a.y2,b.y2); return ret; } pair< PII , PII > operator+(pair< PII , PII > a,pair< PII , PII > b) { a.f.f=min(a.f.f,b.f.f); a.s.f=min(a.s.f,b.s.f); a.f.s=max(a.f.s,b.f.s); a.s.s=max(a.s.s,b.s.s); return a; } bool wspolne( pair< PII , PII > a,pair< PII , PII > b) { if(a.f.f==b.f.f&&a.f.s==b.f.s&&b.s.f==a.s.f&&a.s.s==b.s.s)return 1; if(a.f.f>=b.f.s||b.f.f>=a.f.s)return 0; if(a.s.f>=b.s.s||b.s.f>=a.s.s)return 0; return 1; } priority_queue < PII, vector< PII > , greater< PII > > poc,kon; void solve() { scanf("%d",&n); for(int i=1;i<=n;i++) { t[i].i=i; t[i].ok=1; t[i].czytaj(); poc.push(MP(t[i].x1,i)); kon.push(MP(t[i].x2,i)); } while(kon.size()) { while(poc.size()&&poc.top().f<kon.top().f) { d=poc.top().s; poc.pop(); t[d].add(); } d=kon.top().s; kon.pop(); if(t[d].ok==0)continue; c=query(t[d].y1+1,t[d].y2-1,t[d].x1+1,INF); if(c==-1) { continue; } t[d].ok=0; t[c].ok=0; n++; t[n]=t[d]+t[c]; t[n].i=n; t[n].ok=1; kon.push(MP(t[n].x2,n)); d=n; t[d].add(); } vector< pair < PII , PII > > out,out2; for(int i=1;i<=n;i++) { if(t[i].ok)out.PB(MP(MP(t[i].y1,t[i].y2),MP(t[i].x1,t[i].x2))); } sort(ALL(out)); for(int i=0;i<out.size();i++) { while(i+1<out.size()&&wspolne(out[i],out[i+1])) { out[i+1]=out[i]+out[i+1]; i++; } out2.PB(MP(out[i].s,out[i].f)); } sort(ALL(out2)); printf("%d\n",(int)out2.size()); for(int i=0;i<out2.size();i++) { printf("%d %d %d %d\n",out2[i].f.f,out2[i].f.s,out2[i].s.f,out2[i].s.s); } } main()//uwaga na y1=0 { solve(); } const int BASE=(1<<20); priority_queue < PII > S[BASE*2]; //set < PII > ::iterator it; void insert(int a,PII co) { a+=BASE; while(a) { S[a].push(co); a/=2; } } int query(int a,int b,int mi,int mx)//a i b to y1,y2, mi to minimalna xowa, mx to maksymalna { if(a>b||mi>mx)return -1; a+=BASE-1; b+=BASE+1; while(a/2!=b/2) { if(a%2==0) { while(S[a+1].size()) { if(t[S[a+1].top().s].ok==0) { S[a+1].pop(); continue; } if(S[a+1].top().f<mi)break; return S[a+1].top().s; } } if(b%2==1) { while(S[b-1].size()) { if(t[S[b-1].top().s].ok==0) { S[b-1].pop(); continue; } if(S[b-1].top().f<mi)break; return S[b-1].top().s; } } a/=2; b/=2; } return -1; } |