B

来源:互联网 发布:淘宝魔方店哪个好 编辑:程序博客网 时间:2024/05/02 04:45

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

Input
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
Output
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.
Sample Input
3 2
1 2
-3 1
2 1

1 2
0 2

0 0
Sample Output
Case 1: 2
Case 2: 1

import java.util.ArrayList;import java.util.Arrays;import java.util.Comparator;import java.util.Scanner;/** * Created by 95112 on 11/12/2017. */public class RadarInstallation {    public static void main(String[] args)    {        ArrayList<String> answers = new ArrayList<String>();        int times =1;        Scanner scanner = new Scanner(System.in);        int n,d;        do {            n = scanner.nextInt();            d = scanner.nextInt();            if (n==0 && d== 0)                break;            Island[] islands = new Island[n];            int maxHeigh = 0;             for (int i =0; i < n; i++)            {                int x ,y;                x = scanner.nextInt();                y = scanner.nextInt();                if (maxHeigh<y)                    maxHeigh = y;                double dValue = Math.sqrt(d*d - y *y);                islands[i] = new Island(x - dValue,x + dValue);            }            if (maxHeigh > d)            {                answers.add("Case "+times+": -1");                times++;                continue;            }            Arrays.sort(islands, new Comparator<Island>() {                @Override                public int compare(Island o1, Island o2) {                    if (o1.left < o2.left)                        return  -1;                    else                        return 1;                }            });             int count = 0;             double end = -999999999999999999999999.0;             for (int i =0 ; i< n; i++){                 if (islands[i].left <= end){                     if (islands[i].right < end)                         end = islands[i].right;                 }else {                     count++;                     end = islands[i].right;                 }             }            answers.add("Case "+times+": "+count);            times++;        }while (true);        for (String answer : answers){            System.out.println(answer);        }    }}class Island{    double left;    double right;    public Island(double x,double y)    {        left = x;        right = y;    }}
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 陆军军官年龄大了怎么办 ps选区选多了怎么办 香港货物被海关扣了怎么办 羽绒服棉填充物不均匀了怎么办 蛀牙到牙神经了怎么办 t恤袖子长了怎么办 t恤袖子短了怎么办 ofo突然要交押金余款怎么办 裙子的腰小了怎么办 白衬衣棉质变软怎么办? 车被自行车刮了怎么办 刮花别人的车门怎么办 破腹产九个月意外怀孕怎么办 破腹产一年半意外怀孕怎么办 37天流产了该怎么办 旧鞋穿着磨脚了怎么办 皮鞋磨脚怎么办小窍门 拉链从下面开了怎么办 高帮足球鞋松了怎么办 橡筋裤头太紧了怎么办 内增高鞋跟太高怎么办 电脑增高架高了怎么办 银行取钱走后回来说少了怎么办 运动t桖太大了怎么办 袖口松紧太紧了怎么办 衣服穿着就皱了怎么办 麻料的衣服很皱怎么办 麻料衣服皱了怎么办 棉麻裤子皱了怎么办 裙子屁股坐皱了怎么办 真丝衣服洗皱了怎么办 粘纤的衣服皱了怎么办 硅胶手机壳粘灰怎么办 橡筋裤子买大了怎么办 橡筋裤子腰小了怎么办 地垫粘瓷砖上怎么办 汽车围裙锈透了怎么办 万能胶水沾到手上怎么办 圆领体恤领口容易皱怎么办 上衣剪了个洞怎么办 上衣破了个洞怎么办