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
|
#include<bits/stdc++.h> #define re register typedef long long ll; template<class T> inline void read(T &x) { x=0; char ch=getchar(),t=0; while(ch<'0'||ch>'9') t|=ch=='-',ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); if(t) x=-x; } template<class T,class ...T1> inline void read(T &x,T1 &...x1){ read(x),read(x1...); } template<class T> inline void write(T x) { if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); } template<> inline void write(bool x){ std::cout<<x; } template<> inline void write(char c){ putchar(c); } template<> inline void write(char *s){ while(*s!='\0') putchar(*s++); } template<> inline void write(const char *s){ while(*s!='\0') putchar(*s++); } template<class T,class ...T1> inline void write(T x,T1 ...x1){ write(x),write(x1...); } template<class T> inline bool checkMax(T &x,T y){ return x<y?x=y,1:0; } template<class T> inline bool checkMin(T &x,T y){ return x>y?x=y,1:0; } const int MAXN=5e5+10; const int Inf=0x3f3f3f3f; const ll INF=0x3f3f3f3f3f3f3f3f; int N,M,Q; ll ans[MAXN]; struct Segment { #define ls (p<<1) #define rs (p<<1|1) struct St { int l,r; ll val,cval,tag,ctag; bool rst; }Tr[MAXN<<2]; inline void pushUp(int p) { Tr[p].val=std::max(Tr[ls].val,Tr[rs].val); Tr[p].cval=std::max(Tr[ls].cval,Tr[rs].cval); } inline void upDate(int p,ll tag,ll ctag) { checkMax(Tr[p].cval,Tr[p].val+ctag); checkMax(Tr[p].ctag,Tr[p].tag+ctag); Tr[p].val+=tag,Tr[p].tag+=tag; } inline void Reset(int p) { upDate(ls,Tr[p].tag,Tr[p].ctag),upDate(rs,Tr[p].tag,Tr[p].ctag); Tr[p].tag=Tr[p].ctag=0,Tr[p].rst=1; Tr[p].cval=Tr[p].val; } inline void pushDown(int p) { if(Tr[p].rst){ Reset(ls),Reset(rs),Tr[p].rst=0; } upDate(ls,Tr[p].tag,Tr[p].ctag), upDate(rs,Tr[p].tag,Tr[p].ctag); Tr[p].tag=Tr[p].ctag=0; } void build(int p,int l,int r) { Tr[p].l=l,Tr[p].r=r; if(l==r) return ; int mid=(l+r)>>1; build(ls,l,mid),build(rs,mid+1,r); } void modifyAdd(int p,int l,int r,ll v) { if(l<=Tr[p].l&&Tr[p].r<=r) return upDate(p,v,v); pushDown(p); int mid=(Tr[p].l+Tr[p].r)>>1; if(l<=mid) modifyAdd(ls,l,r,v); if(mid<r) modifyAdd(rs,l,r,v); pushUp(p); } ll queryCmax(int p,int l,int r) { if(l<=Tr[p].l&&Tr[p].r<=r) return Tr[p].cval; pushDown(p); int mid=(Tr[p].l+Tr[p].r)>>1;ll res=-INF; if(l<=mid) checkMax(res,queryCmax(ls,l,r)); if(mid<r) checkMax(res,queryCmax(rs,l,r)); return res; } #undef ls #undef rs }Tr; struct Query { int id,l,r,x,y; }qr[MAXN]; struct Node { int l,r;ll val; }; std::vector<Query>Qry[MAXN<<2]; std::vector<Node>vec[MAXN]; #define ls (p<<1) #define rs (p<<1|1) inline void Segadd(int p,int l,int r,Query q) { int mid=(l+r)>>1; if(q.l<=mid+1&&mid<=q.r) return Qry[p].emplace_back(q),void(); if(q.r<=mid) Segadd(ls,l,mid,q); else Segadd(rs,mid+1,r,q); } inline bool cmpNode(Node a,Node b){ return a.val<b.val; } inline bool cmpL(Query a,Query b){ return a.l>b.l; } inline bool cmpR(Query a,Query b){ return a.r<b.r; } inline void Segup(int p,int opt) { if(opt==1) for(auto x:vec[p]) Tr.modifyAdd(1,x.l,x.r,x.val); else for(int i=vec[p].size()-1;~i;--i) Tr.modifyAdd(1,vec[p][i].l,vec[p][i].r,-vec[p][i].val); } void Dac(int p,int l,int r) { int mid=(l+r)>>1; for(int i=l;i<=mid;++i) Segup(i,1); int cnt=0,pos=1; for(auto v:Qry[p]) qr[++cnt]=v; std::sort(qr+1,qr+cnt+1,cmpR); while(pos<=cnt&&qr[pos].r==mid) ++pos; for(int i=mid+1;i<=r;++i) { Segup(i,1); if(i==mid+1) Tr.Reset(1); while(qr[pos].r==i&&pos<=cnt) { checkMax(ans[qr[pos].id],Tr.queryCmax(1,qr[pos].x,qr[pos].y)); ++pos; } } for(int i=r;i>mid;--i) Segup(i,-1); if(l!=r) Dac(rs,mid+1,r); cnt=0,pos=1; for(auto v:Qry[p]) qr[++cnt]=v; std::sort(qr+1,qr+cnt+1,cmpL); while(pos<=cnt&&qr[pos].l==mid+1) ++pos; for(int i=mid;i>=l;--i) { if(i==mid) Tr.Reset(1); while(qr[pos].l==i&&pos<=cnt) { checkMax(ans[qr[pos].id],Tr.queryCmax(1,qr[pos].x,qr[pos].y)); ++pos; } Segup(i,-1); } if(l!=r) Dac(ls,l,mid); } int main() {
read(N,M,Q); Tr.build(1,1,N); for(int i=1;i<=M;++i) { int l,r,x,y;ll val; read(l,x,r,y,val); vec[l].emplace_back((Node){x,y,val}); vec[r+1].emplace_back((Node){x,y,-val}); } for(int i=1,l,r,x,y;i<=Q;++i) { read(l,x,r,y); Segadd(1,1,N,(Query){i,l,r,x,y}); } for(int i=1;i<=N;++i) std::sort(vec[i].begin(),vec[i].end(),cmpNode); Dac(1,1,N); for(int i=1;i<=Q;++i) write(ans[i],'\n'); return 0; }
|