首页 > 其他 > 详细

POJ 1328 Radar Installation(贪心)

时间:2015-06-12 19:24:18      阅读:159      评论:0      收藏:0      [点我收藏+]

在区间上贪心,存储的是包括该点的范围



#include<iostream>
#include<algorithm>
#include<cmath>
using namespace std;
struct point
{
	double x1,x2;
}p[1005];<span style="color:#008000;">//</span><span style="color:#008000;">每个岛作半径为d的圆,与x轴所截的线段</span>
bool cmp(point a,point b)
{
	return a.x1<b.x1;
}
int main()
{
	int n,r,i,t,end_flag,count;
	double temp,x,y;
	t=1;
	while(cin>>n>>r)
	{
		if(n==0&&r==0) break;
		end_flag=0;
		count=1;
		for(i=1;i<=n;i++)
		{
			cin>>x>>y;
			if(y>r) end_flag=1;
			p[i].x1=x-sqrt(r*r-y*y);
			p[i].x2=x+sqrt(r*r-y*y);
		}//存储的是包括该点的范围
		cout<<"Case "<<t++<<": ";
		if(end_flag)
		{
			cout<<-1<<endl;
			continue;
		}
		sort(p+1,p+n+1,cmp);
		temp=p[1].x2;
		for(i=2;i<=n;i++)
		{
			if(p[i].x2<temp) temp=p[i].x2;//如果下一个区间在当前区间的内部。
			else if(p[i].x1>temp)//如果下一个区间不在当前区间内。
			{
				count++;
				temp=p[i].x2;
			}
			//不考虑两个区间有交集,此时雷达还是限制在原区间右端点。
		}
		cout<<count<<endl;
	}
	return 0;
}


POJ 1328 Radar Installation(贪心)

原文:http://blog.csdn.net/gg_gogoing/article/details/38668681

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!