SPOJ BGSHOOT 线段树

BGSHOOT - Shoot and kill


The problem is about Mr.BG who is a great hunter. Today he has gone to a dense forest for hunting and killing animals.

Sadly, he has only one bullet in his gun. He wants to kill as many animals as possible with only one bullet.

He has already known the information of duration availability of all animals of the forest.

So, he is planning to shoot at a time so that he could kill maximum animal. 

Input

Input begins with an integer N denoting total numbers of animals.

Next N lines contains the duration of availability of animal denoting by X (Starting time) and Y (Ending time) .

Then, there will be Q, denoting the total numbers of queries to be answer.

Each query giving two integer L and RL denoting the time hunter will come to forest and begins shooting

and R denoting last time upto which he will stay at forest for hunting.

Output

For each query output an integer denoting maximum numbers of animals he could kill by shooting at a time during L and R (inclusive).

Constraints:

1<=N,Q<=100000

1<=X,Y,L,R<=1000000000

Example

Input:
4
1 2
2 3
4 5
6 7
4
1 5
2 3
4 7
5 7

Output:
2
2
1
1

题意:有N个动物,第i个动物的活动时间属于[Xi, Yi]。
有Q次询问,每个询问代表你会在[Li, Ri]时间内打猎。
对于每个询问,输出在当前活动时间内动物最多的时刻的动物数。


题解:离散化后扔到线段树里搞一搞  裸的模板题


#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct node{
	int num,laz;
}tree[1600005];
int l[100005],r[100005],num[400005],x[100005],y[100005];
void build(int t,int l,int r){
	if(l==r){
		tree[t].num=tree[t].laz=0;
		return ;
	}
	int mid=l+r>>1;
	build(t<<1,l,mid);
	build(t<<1|1,mid+1,r);
	tree[t].laz=0;
	tree[t].num=max(tree[t<<1].num,tree[t<<1|1].num);
}
void change(int t,int l,int r,int x,int y){
	if(x<=l&&y>=r){
		tree[t].laz+=1;
		return ;
	}
	int mid=l+r>>1;
	if(x>mid)change(t<<1|1,mid+1,r,x,y);
	else if(y<=mid)change(t<<1,l,mid,x,y);
	else{
		change(t<<1,l,mid,x,y);
		change(t<<1|1,mid+1,r,x,y);
	}
}
void travel(int t,int l,int r,int sum){
	if(l==r){
		sum+=tree[t].laz;
		tree[t].num=sum;
		return ;
	}
	int mid=l+r>>1;
	travel(t<<1,l,mid,sum+tree[t].laz);
	travel(t<<1|1,mid+1,r,sum+tree[t].laz);
	tree[t].num=max(tree[t<<1].num,tree[t<<1|1].num);
}
int ans=0;
void query(int t,int l,int r,int x,int y){
	if(x<=l&&y>=r){
		ans=max(ans,tree[t].num);
		return ;
	}
	int mid=l+r>>1;
	if(y<=mid)query(t<<1,l,mid,x,y);
	else if(x>mid)query(t<<1|1,mid+1,r,x,y);
	else{
		query(t<<1,l,mid,x,y);
		query(t<<1|1,mid+1,r,x,y);
	}
}
int main(){
	int i,j,n,q,cnt=0;
	scanf("%d",&n);
	for(i=1;i<=n;i++){
		scanf("%d%d",&l[i],&r[i]);
		num[++cnt]=l[i];
		num[++cnt]=r[i];
	}
	scanf("%d",&q);
	for(i=1;i<=q;i++){
		scanf("%d%d",&x[i],&y[i]);
		num[++cnt]=x[i];
		num[++cnt]=y[i];
	}
	sort(num+1,num+1+cnt);
	cnt=unique(num+1,num+1+cnt)-num-1;
	build(1,1,cnt);
	for(i=1;i<=n;i++){
		int t1=lower_bound(num+1,num+1+cnt,l[i])-num;
		int t2=lower_bound(num+1,num+1+cnt,r[i])-num;
		change(1,1,cnt,t1,t2);
	}
	travel(1,1,cnt,0);
	for(i=1;i<=q;i++){
		int t1=lower_bound(num+1,num+1+cnt,x[i])-num;
		int t2=lower_bound(num+1,num+1+cnt,y[i])-num;
		ans=0;
		query(1,1,cnt,t1,t2);
		printf("%d\n",ans);
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值