UVALive - 2519 Radar Installation(区间选点问题)

题意:
在坐标轴的一二象限,给出n个岛屿的坐标,以及雷达的扫描距离,要求在x轴上放尽量少的雷达能够覆盖全部岛屿。

解析:

区间选点问题。先将岛屿的坐标转换为在x轴上覆盖的区间,然后用区间选点的思想求解。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
const int INF = 0x3f3f3f3f;
const int N = 1010;
struct Node {
	double l,r;
}s[N];
int n,r;
bool cmp(Node a, Node b) {
	return a.r < b.r;
}
int main() {
	double x,y;
	bool flag;
	int cas = 1;
	while( scanf("%d%d",&n,&r) != EOF && (r || n)) {
		flag = true;
		for(int i = 0; i < n; i++) {
			scanf("%lf%lf",&x,&y);
			if(y > r) {
				flag = false;
				break;
			}
			double t = sqrt((double)r*r - y*y);
			s[i].l = x - t;
			s[i].r = x + t;
		}
		int cnt = 0;
		double end = -INF;
		sort(s,s+n,cmp);
		for(int i = 0; i < n; i++) {
			if(s[i].l > end) {
				end = s[i].r;
				cnt++;
			}
		}
		printf("Case %d: ",cas++);
		if(flag) {
			printf("%d\n",cnt);
		}else {
			printf("-1\n");
		}
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值