总时间限制:
1000ms
内存限制:
65536kB
描述
Assume the coasting is an infinite straight line. Land is in one side of coasting, sea in the other. Each small island is a point locating in the sea side. And any radar installation, locating on the coasting, can only cover d distance, so an island in the sea can be covered by a radius installation, if the distance between them is at most d.

We use Cartesian coordinate system, defining the coasting is the x-axis. The sea side is above x-axis, and the land side below. Given the position of each island in the sea, and given the distance of the coverage of the radar installation, your task is to write a program to find the minimal number of radar installations to cover all the islands. Note that the position of an island is represented by its x-y coordinates.

Figure A Sample Input of Radar Installations

输入
The input consists of several test cases. The first line of each case contains two integers n (1<=n<=1000) and d, where n is the number of islands in the sea and d is the distance of coverage of the radar installation. This is followed by n lines each containing two integers representing the coordinate of the position of each island. Then a blank line follows to separate the cases.

The input is terminated by a line containing pair of zeros

输出
For each test case output one line consisting of the test case number followed by the minimal number of radar installations needed. "-1" installation means no solution for that case.
样例输入
3 2
1 2
-3 1
2 11 2
0 20 0
样例输出
Case 1: 2
Case 2: 1

题目大致意思是,x轴为海岸线,上方有坐标为(x,y)的岛屿x,y为整数,已知雷达的探测范围为d(整数),问至少需要多少个雷达能他覆盖到所有的岛屿。如果有岛屿不能被探测到,则输出-1,否则输出最少雷达个数

思路:把雷达能探测到的位置转化为以,岛屿为圆心,d为半径的圆在x轴上截的长度区间(在此区间内可以探测到该岛屿,

把所有的区间按照升序排列,然后选择某个区间左端点,并且与其之前的没有被确定为已经被探测的区间的右端点进行比较,如果小于之前的点的右端点,则说明这个位置安放雷达可以探测到这些岛屿,继续这个过程,直到某个岛屿不能被探测,说明之前几个区间需要安放一个雷达,记录此时位置,并且下一轮从该位置记录比较。

此题巧妙之处就是,按照区间左端点升序排列,此时,后面的区间起始处已经默认小于之前的区间的左端点,此时只需要比较其起始点,是否也比右端点小就可以判断是否可以同时探测。

按照这个思想,我觉得,也可以按照右端点降序排列,此时之前的区间的右端点已经默认小于该点右端点,可以按照类似方法进行判断。

学习到了:数据读入时即使不满足条件,也要把此次数据读完再结束本次,否则直接影响之后的数据读取

#include<stdio.h>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
using namespace std;struct Node{double s,e;bool operator<(const Node o)const{return s < o.s; //按照 区间初始距离升序 }
};
int n,d;
struct Node nodes[1000+5];
int main(){int x,y;int kcase = 0;//freopen("C:/Users/zhangwei/Desktop/input.txt","r",stdin);while(cin >> n >> d && n!=0 && d != 0){bool flag = true; for(int i = 0; i < n; ++i){scanf("%d%d",&x,&y);if(y > d){flag = false; //注意 不要在这里直接break, 否则本次数据没有读取完 }              //影响下一组数据的读取 导致RuntimeError double t = sqrt(d*d-y*y);nodes[i].s = x-t;//记录区间nodes[i].e = x+t;} printf("Case %d:",++kcase); if(!flag){printf(" -1\n");continue; //一旦有不可探测点结束 }sort(nodes,nodes+n);int firNoVis = 0;int ans = 1;//初始为1for(int i = 1; i < n; ++i){for(int j = firNoVis; j < i; ++j){if(nodes[i].s <= nodes[j].e){continue;}else{firNoVis = i;++ans;break;}}} printf(" %d\n",ans);}return 0;}

贪心(百练1328):安放雷达(区间问题)相关推荐

  1. 钓鱼问题(百练1042)

    ★问题描述: 约翰正在钓鱼.他有h个小时可用(1 <= h <= 16),并且该区域有n个湖泊(2 <= n <= 25),沿着一条单向公路可达.约翰从1号湖开始,但他可以在任 ...

  2. 程序设计入门经典题解(百练篇)

    参考链接:PKU百练题解(Bailian) Bailian1017 装箱问题[贪心] - 海岛Blog - CSDN博客 POJ1088 Bailian1088 滑雪[DFS+记忆化搜索]_海岛Blo ...

  3. 百练,4103,踩方格

    百练,4103,踩方格 普通做法:(也可以找规律) #include #include//要调用memset函数,头文件 using namespace std; int visited[50][50 ...

  4. 北大OJ百练——4075:矩阵旋转(C语言)

    百练的这道题很简单,通过率也达到了86%,所以我也就来贴个代码了...下面是题目: 不过还是说一下我的思路: 这道题对一个新来说,可能是会和矩阵的转置相混淆,这题并不是要我们去求矩阵的转置. 这题,我 ...

  5. 威佐夫博弈:百练OJ:1067:取石子游戏

    威佐夫博弈(Wythoff's game):有两堆各若干个物品,两个人轮流从任一堆取至少一个或同时从两堆中取同样多的物品,规定每次至少取一个,多者不限,最后取光者得胜. 百练OJ:1067:取石子游戏 ...

  6. 百练OJ:4003:十六进制转十进制(python三行代码实现)

    题目链接:百练OJ:4003 描述 将十六进制数转换成十进制数 输入 第一行有一个整数T,表示共有T组数据 接下来T行,每一行为一个16进制无符号正整数,位数不超过8位,数中的a-f均为大写字母,数前 ...

  7. 百练OJ:2742:统计字符数

    题目链接: 百练OJ:2742:统计字符数 描述:判断一个由a-z这26个字符组成的字符串中哪个字符出现的次数最多 输入:第1行是测试数据的组数n,每组测试数据占1行,是一个由a-z这26个字符组成的 ...

  8. java函数实现进制转换与java实现八进制到十进制的转换(百练OJ:2735:八进制到十进制)

    java进制转换函数介绍:Java二进制.八进制.十进制.十六进制相互转换: 二进制转十进制 Integer.parseInt("0110", 2); 八进制转十进制 Intege ...

  9. 百练OJ:2973:Skew数

    题目链接: 百练OJ:2973:Skew数 描述:在 skew binary表示中, 第 k 位的值xk表示xk*(2k+1-1). 每个位上的可能数字是0 或 1,最后面一个非零位可以是2, 例如, ...

  10. 百练 Let it Bead

    百练 Let it Bead 总时间限制: 内存限制: 1000ms 65536kB 描述 "Let it Bead" company is located upstairs at ...

最新文章

  1. NASA:首批“太空蜜蜂”将赴空间站上班,助宇航员推进研究!
  2. 使用代码配置 NHibernate
  3. 红帽RHEL6.8离线环境下升级到RHEL7.3
  4. 使用salt-api来搭建salt自动化平台
  5. 第二话 最最最简单的计算机
  6. GPUImage源码解读之GPUImageFramebuffer
  7. 漫谈C++ Builder多线程编程技术
  8. 判断整数序列是不是二叉查找树的后序遍历结果
  9. 第04讲: 基础探究,Session 与 Cookies
  10. Java容器的遍历之增强for循环
  11. Lucene基本使用和代码实现
  12. ECCV 2020 论文大盘点-自动驾驶篇
  13. Spring Boot (16)---优雅的入门篇
  14. 计算机网络技术之网络系统设计与组建工程
  15. 生意做到一定规模,老板想面面俱到,亲力亲为就不可能了
  16. 洛谷P1429 平面最近点对(加强版)
  17. AUTOCAD——设置颜色
  18. 联想计算机的控制面板在哪,教程知识:联想win10控制面板在哪里打开
  19. Venmo、Bakkt、MoneyGram、Uphold的前高管加入Roxe全球支付网络
  20. JUC之striped64

热门文章

  1. 什么是“懒加载”(Lazy Loading)?
  2. 网站PV,UV是什么意思?
  3. Blast2GO-Pro心得
  4. GMM-HMM 详解
  5. 新浪UC 单文件精简版
  6. 从祖师级到新生代,48位开发者的「武功秘籍」
  7. AMiner推荐论文:Strongly coupled N-doped graphene quantum dots/Ni(Fe)OxHy electrocatalysts with accelerat
  8. 图片优化——质量与性能的博弈
  9. U盘文件变exe文件
  10. 二次开发平台PMSCADA展示版