贪心(百练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

相关文章

好题——hdu2522(小数问题:求1/n的第一个循环节)

好喜欢这题,第一次做小数问题,一开始真心没思路,然后参考了网上的一些资料。 知识点***********************************无限不循环小数即无理数,不能写作两整数之比*****************************(一开始没想到,小学没学好) 此题1/n肯定是一个有限循环小数,了解这些后就能做此题了。 按照除法的机制,用一个函数表示出来就可以了,代码如下

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

购买磨轮平衡机时应该注意什么问题和技巧

在购买磨轮平衡机时,您应该注意以下几个关键点: 平衡精度 平衡精度是衡量平衡机性能的核心指标,直接影响到不平衡量的检测与校准的准确性,从而决定磨轮的振动和噪声水平。高精度的平衡机能显著减少振动和噪声,提高磨削加工的精度。 转速范围 宽广的转速范围意味着平衡机能够处理更多种类的磨轮,适应不同的工作条件和规格要求。 振动监测能力 振动监测能力是评估平衡机性能的重要因素。通过传感器实时监

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

缓存雪崩问题

缓存雪崩是缓存中大量key失效后当高并发到来时导致大量请求到数据库,瞬间耗尽数据库资源,导致数据库无法使用。 解决方案: 1、使用锁进行控制 2、对同一类型信息的key设置不同的过期时间 3、缓存预热 1. 什么是缓存雪崩 缓存雪崩是指在短时间内,大量缓存数据同时失效,导致所有请求直接涌向数据库,瞬间增加数据库的负载压力,可能导致数据库性能下降甚至崩溃。这种情况往往发生在缓存中大量 k

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

poj 3190 优先队列+贪心

题意: 有n头牛,分别给他们挤奶的时间。 然后每头牛挤奶的时候都要在一个stall里面,并且每个stall每次只能占用一头牛。 问最少需要多少个stall,并输出每头牛所在的stall。 e.g 样例: INPUT: 51 102 43 65 84 7 OUTPUT: 412324 HINT: Explanation of the s

poj 2976 分数规划二分贪心(部分对总体的贡献度) poj 3111

poj 2976: 题意: 在n场考试中,每场考试共有b题,答对的题目有a题。 允许去掉k场考试,求能达到的最高正确率是多少。 解析: 假设已知准确率为x,则每场考试对于准确率的贡献值为: a - b * x,将贡献值大的排序排在前面舍弃掉后k个。 然后二分x就行了。 代码: #include <iostream>#include <cstdio>#incl

hdu4267区间统计

题意:给一些数,有两种操作,一种是在[a,b] 区间内,对(i - a)% k == 0 的加value,另一种操作是询问某个位置的值。 import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import