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
| #include<bits/stdc++.h>
using namespace std;
const int N=1e5+5;
struct node { int l,r,h; bool operator< (const node& a)const { return h<a.h; } }e[N*2];
int a[N*2]; int sum[N*2*4],flag[N*2*4];
void cal(int l,int r,int root) { sum[root]=(a[r]-a[l])-sum[root]; }
void pushup(int root) { sum[root]=sum[root<<1]+sum[root<<1|1]; }
void pushdown(int l,int r,int root) { if(!flag[root]) return ; flag[root<<1]^=1; flag[root<<1|1]^=1; int mid=l+r>>1; cal(l,mid,root<<1); cal(mid,r,root<<1|1); flag[root]=0; }
void update(int l,int r,int root,int ql,int qr) { if(l>=ql&&r<=qr) { cal(l,r,root); flag[root]^=1; return ; } pushdown(l,r,root); int mid=l+r>>1; if(mid>ql) update(l,mid,root<<1,ql,qr); if(mid<qr) update(mid,r,root<<1|1,ql,qr); pushup(root); }
int main() { int n; scanf("%d",&n); int x1,x2,y1,y2,all=0; for(int i=1;i<=n;i++) { scanf("%d%d%d%d",&x1,&y1,&x2,&y2); e[2*i-1].l=min(x1,x2); e[2*i-1].r=max(x1,x2); e[2*i-1].h=min(y1,y2); e[2*i].l=min(x1,x2); e[2*i].r=max(x1,x2); e[2*i].h=max(y1,y2); a[2*i-1]=x1,a[2*i]=x2; } sort(a+1,a+1+n*2); all=unique(a+1,a+1+n*2)-a-1; for(int i=1;i<=2*n;i++) e[i].l=lower_bound(a+1,a+1+all,e[i].l)-a,e[i].r=lower_bound(a+1,a+1+all,e[i].r)-a; sort(e+1,e+1+2*n); ll ans=0; for(int i=1;i<=2*n;i++) { ans+=sum[1]*(e[i].h-e[i-1].h); update(1,all,1,e[i].l,e[i].r); } printf("%lld\n",ans); }
|