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
|
#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){ putchar(x?'1':'0'); } 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=2e5+10,MAXM=1e6+10; const int inf=0x3f3f3f3f; const ll INF=0x3f3f3f3f3f3f3f3f; const int S=1e6+1; int N,M,P; ll Atk[MAXM],Def[MAXM],ans=-INF; struct Monster { ll atk,def,cost; bool operator<(const Monster &x) const { return atk<x.atk; } }Mon[MAXN]; #define ls (p<<1) #define rs (p<<1|1) struct Segment { int l,r; ll val,tag; }Tr[MAXM<<2]; inline void pushUp(int p) { Tr[p].val=std::max(Tr[ls].val,Tr[rs].val); } inline void upDate(int p,ll v) { Tr[p].val+=v,Tr[p].tag+=v; return ; } inline void pushDown(int p) { if(!Tr[p].tag) return ; upDate(ls,Tr[p].tag),upDate(rs,Tr[p].tag); Tr[p].tag=0; } void build(int p,int l,int r) { Tr[p].l=l,Tr[p].r=r; if(l==r) return Tr[p].val=-Def[l],void(); int mid=(l+r)>>1; build(ls,l,mid),build(rs,mid+1,r); pushUp(p); } void modifyAdd(int p,int l,int r,ll v) { if(l<=Tr[p].l&&Tr[p].r<=r) return upDate(p,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 queryMax(int p,int l,int r) { if(l<=Tr[p].l&&Tr[p].r<=r) return Tr[p].val; pushDown(p); int mid=(Tr[p].l+Tr[p].r)>>1; ll res=-INF; if(l<=mid) checkMax(res,queryMax(ls,l,r)); if(mid<r) checkMax(res,queryMax(rs,l,r)); return res; } int main() { read(N,M,P); std::memset(Atk,0x3f,sizeof(Atk)), std::memset(Def,0x3f,sizeof(Def)); for(int i=1,x;i<=N;++i){ ll c;read(x,c),checkMin(Atk[x],c); } for(int i=1,x;i<=M;++i){ ll c;read(x,c),checkMin(Def[x],c); } for(int i=1;i<=P;++i) read(Mon[i].atk,Mon[i].def,Mon[i].cost),++Mon[i].def,++Mon[i].atk; Mon[++P]=(Monster){1,1,0}; std::sort(Mon+1,Mon+P+1); build(1,1,S); for(int i=S;i>=1;--i) checkMin(Atk[i],Atk[i+1]); for(int i=1;i<=P;++i) { auto q=Mon[i]; modifyAdd(1,q.def,S,q.cost); checkMax(ans,queryMax(1,1,S)-Atk[q.atk]); } write(ans); return 0; }
|