#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; typedef unsigned int ui; const ll mod = 1000000007; const ll INF = (ll)1000000007 * 1000000007; typedef pair P; #define stop char nyaa;cin>>nyaa; #define rep(i,n) for(int i=0;i=0;i--) #define Rep(i,sta,n) for(int i=sta;i=sta;i--) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef long double ld; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair LP; int dx[4]={1,-1,0,0}; int dy[4]={0,0,1,-1}; int n,M=20010; vector xa,xb,ya,yb; vector ans1,ans2,ans3,ans4; template struct SegmentTree{ using F = function; using G = function; using H = function; int n,height; F f; G g; H h; T ti; E ei; vector dat; vector laz; SegmentTree(F f,G g,H h,T ti,E ei): f(f),g(g),h(h),ti(ti),ei(ei){} void init(int n_){ n=1;height=0; while(n &v){ int n_=v.size(); init(n_); for(int i=0;i>i); } inline void recalc(int k){ while(k>>=1) dat[k]=f(reflect((k<<1)|0),reflect((k<<1)|1)); } void update(int a,int b,E x){ if(a>=b) return; thrust(a+=n); thrust(b+=n-1); for(int l=a,r=b+1;l>=1,r>>=1){ if(l&1) laz[l]=h(laz[l],x),l++; if(r&1) --r,laz[r]=h(laz[r],x); } recalc(a); recalc(b); } void set_val(int a,T x){ thrust(a+=n); dat[a]=x;laz[a]=ei; recalc(a); } T query(int a,int b){ if(a>=b) return ti; thrust(a+=n); thrust(b+=n-1); T vl=ti,vr=ti; for(int l=a,r=b+1;l>=1,r>>=1) { if(l&1) vl=f(vl,reflect(l++)); if(r&1) vr=f(reflect(--r),vr); } return f(vl,vr); } template int find(int st,C &check,T &acc,int k,int l,int r){ if(l+1==r){ acc=f(acc,reflect(k)); return check(acc)?k-n:-1; } propagate(k); int m=(l+r)>>1; if(m<=st) return find(st,check,acc,(k<<1)|1,m,r); if(st<=l&&!check(f(acc,dat[k]))){ acc=f(acc,dat[k]); return -1; } int vl=find(st,check,acc,(k<<1)|0,l,m); if(~vl) return vl; return find(st,check,acc,(k<<1)|1,m,r); } template int find(int st,C &check){ T acc=ti; return find(st,check,acc,1,0,n); } }; void solve(vector &x,vector &y,vector &ans){ auto f1=[](LP a,LP b) {return LP(a.first+b.first,a.second+b.second);}; auto f2=[](ll a,ll b) {return max(a,b);}; auto g1=[](LP a,ll b) {return LP(b*a.second,a.second);}; auto h1=[](ll a,ll b) {a+=1;return b;}; auto g2=[](ll a,ll b) {if(b==-1) return a;return b;}; SegmentTree seg1(f1,g1,h1,LP(0,0),-1); SegmentTree seg2(f2,g2,g2,0,-1); vector v1(M+1,LP(0,1));v1[M]=LP(INF,1); vector v2(M+1);v2[M]=INF; seg1.build(v1);seg2.build(v2); rep(i,n){ auto check=[&](ll p) {return p>y[i];}; int nx=seg2.find(M-x[i],check); //cout << M-x[i] << " " << nx << endl; seg1.update(M-x[i],nx,y[i]); seg2.update(M-x[i],nx,y[i]); ans[i]=seg1.query(0,M).first; //cout << ans[i] << endl; } } int main(){ cin >> n; xa.resize(n); xb.resize(n); ya.resize(n); yb.resize(n); ans1.resize(n); ans2.resize(n); ans3.resize(n); ans4.resize(n); rep(i,n){ cin >> xa[i] >> ya[i] >> xb[i] >> yb[i]; xa[i]*=-1; ya[i]*=-1; } solve(xa,ya,ans1); solve(xa,yb,ans2); solve(xb,ya,ans3); solve(xb,yb,ans4); vector S={0}; rep(i,n){ cout << ans1[i]+ans2[i]+ans3[i]+ans4[i]-S.back() << endl; S.push_back(ans1[i]+ans2[i]+ans3[i]+ans4[i]); } ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(50); }