记录编号 |
326275 |
评测结果 |
AAAAAAAAAA |
题目名称 |
区间权最大 |
最终得分 |
100 |
用户昵称 |
Hzoi_ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.508 s |
提交时间 |
2016-10-21 06:36:04 |
内存使用 |
7.50 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=270010;//262144
struct A{
int l,r,d;
bool tp;//0:modify 1:query
bool operator<(const A &a)const{
if(r!=a.r)return r<a.r;
return !tp;
}
}a[maxn];
void mset(int,int);
int qmax(int,int);
int n,M,m,cnta=1,cntq=1,mx[maxn<<1]={0},ans[maxn];
int main(){
#define MINE
#ifdef MINE
freopen("max.in","r",stdin);
freopen("max.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
M=262144;
for(int i=1;i<=n;i++){
scanf("%d%d%d",&a[i].l,&a[i].r,&a[i].d);
a[i].tp=false;
}
for(int i=1;i<=m;i++){
scanf("%d%d",&a[i+n].l,&a[i+n].r);
a[i+n].d=i;
a[i+n].tp=true;
}
sort(a+1,a+n+m+1);
for(int i=1;i<=n+m;i++){
if(!a[i].tp)mset(a[i].l,a[i].d);
else ans[a[i].d]=qmax(a[i].l,a[i].r);
}
for(int i=1;i<=m;i++)printf("%d\n",ans[i]);
#ifndef MINE
printf("\n-------------------------DONE-------------------------\n");
for(;;);
#endif
return 0;
}
void mset(int x,int d){
x+=M;
mx[x]=max(mx[x],d);
for(x>>=1;x;x>>=1)mx[x]=max(mx[x<<1],mx[x<<1|1]);
}
int qmax(int l,int r){
int ans=0;
for(l+=M-1,r+=M+1;l^r^1;l>>=1,r>>=1){
if(~l&1)ans=max(ans,mx[l^1]);
if(r&1)ans=max(ans,mx[r^1]);
}
return ans;
}