uva10382

简介: 题意:有一块草坪,长为l,宽为w,在其中心线的不同位置处装有n个点状的喷水装置,每个装置i可以将以它为中心,半径为ri的圆形区域润湿,清选择尽量少的喷水装置,把整个草坪全部润湿。 分析:其实是一个最小区间覆盖的问题,用最少的区间覆盖给定的区间。

题意:有一块草坪,长为l,宽为w,在其中心线的不同位置处装有n个点状的喷水装置,每个装置i可以将以它为中心,半径为ri的圆形区域润湿,清选择尽量少的喷水装置,把整个草坪全部润湿。
分析:其实是一个最小区间覆盖的问题,用最少的区间覆盖给定的区间。

代码:

 

#include <stdio.h>
#include <math.h>
#include <algorithm>
using namespace std;
const int MAXN = 11111;
double l, w;
pair<double, double>a[MAXN];
int main(){
        int n;
        while(scanf("%d%lf%lf", &n, &l, &w)!=EOF){
                int i,j,m=0;
                for(i=0; i<n; i++){
                        double x, r;
                        scanf("%lf%lf", &x, &r);
                        if(w>=2*r) continue;
                        double tmp=sqrt(r*r-w*w/4);
                        a[m++]=make_pair(x-tmp,x+tmp);
                }
                sort(a,a+m);
                int cnt=0;
                bool flag=false;
                double low=0, up=0;
                for(i=0; i<m; i++){
                        if(a[i].first>up) break;
                        if(a[i].second>up){
                                for(j=i; j<m&&a[j].first<=low;j++)
                                        if(up<a[j].second) up=a[j].second;
                                cnt++;
                                if(up>=l){flag=true;break;}
                                low=up;
                        }
                }
                if(flag) printf("%d\n", cnt);
                else puts("-1");
        }
        return 0;
}


 

目录
相关文章
uva 10340 all in all
输入两个字符串s和t,判断是否可以从t中删除0个或多个字符(其他字符顺序不变),得到字符串是。
43 0
UVa11968 - In The Airport
UVa11968 - In The Airport
58 0
uva10112 Myacm Triangles
uva10112 Myacm Triangles
45 0
uva375 Inscribed Circles and Isosceles Triangles
uva375 Inscribed Circles and Isosceles Triangles
43 0
UVa 10082 WERTYU
UVa 10082 WERTYU
129 0
|
算法
UVA题目分类
题目 Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics 10300 - Ecological Premium 458 - The Decoder 494...
1570 0
|
存储 固态存储
|
机器学习/深度学习 人工智能
uva 10870 Recurrences
点击打开uva 10870 思路:构造矩阵+矩阵快速幂 分析: 1 题目给定f(n)的表达式 f(n) = a1 f(n - 1) + a2 f(n - 2) + a3 f(n -3) + .
737 0
uva 1160 X-Plosives
点击打开链接uva 1160 思路: 并查集 分析: 1 看懂题目之和就是切菜了 代码: #include #include #include #include using namespace std; const int MAXN...
773 0