标签:区间问题
| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 54798 | Accepted: 12352 |
Description
Input
Output
Sample Input
3 2 1 2 -3 1 2 1 1 2 0 2 0 0
Sample Output
Case 1: 2 Case 2: 1
题意:就是找最少的站,来覆盖全部的点。
思路:我们可以以点来做半径为d的圆,与x轴的相交,如果不相交那么肯定完不成任务,反之就转化成了区间选点问题。
代码:
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <math.h>
using namespace std;
#define M 1005
struct node {
double st, en;
}s[M];
int cmp(node a, node b){
if(a.en == b.en) return a.st > b.st;
return a.en<b.en;
}
int main(){
int n, v = 1; double d;
while(scanf("%d%lf", &n, &d), n||d){
int i, j;
double a, b;
int flag = 0;
for(i = 0; i < n; i ++){
scanf("%lf%lf", &a, &b);
if(b>d) flag = 1;
if(flag == 0){
s[i].en = a+sqrt(d*d-b*b);
s[i].st = a-sqrt(d*d-b*b);
//printf("%lf %lf %d..\n", s[i].st, s[i].en, i);
}
// scanf("%lf%lf", &s[i].st, &s[i].en);
}
printf("Case %d: ", v++);
if(flag){
printf("-1\n"); continue;
}
sort(s, s+n, cmp);
int ans = 1;
double maxr = s[0].en;
i = 1, j = 0;
while(i < n){
if(s[i].st <= s[j].en){
//if(maxr < s[i].en) maxr = s[i].en;
++i;
}
else {
//if(j == i-1)
j = i;
++ans;
// maxr = s[i].en;
}
}
printf("%d\n", ans);
}
return 0;
}
poj 1328 Radar Installation 【贪心】【区间选点问题】
标签:区间问题
原文地址:http://blog.csdn.net/shengweisong/article/details/41230943