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

2024-04-05 23:58

本文主要是介绍贪心(百练1328):安放雷达(区间问题),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

总时间限制:
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):安放雷达(区间问题)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/878505

相关文章

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g