zoukankan      html  css  js  c++  java
  • PAT Saving James Bond

    Saving James Bond - Easy Version

    This time let us consider the situation in the movie "Live and Let Die" in which James Bond, the world's most famous spy, was captured by a group of drug dealers. He was sent to a small piece of land at the center of a lake filled with crocodiles. There he performed the most daring action to escape -- he jumped onto the head of the nearest crocodile! Before the animal realized what was happening, James jumped again onto the next big head... Finally he reached the bank before the last crocodile could bite him (actually the stunt man was caught by the big mouth and barely escaped with his extra thick boot).

    Assume that the lake is a 100 by 100 square one. Assume that the center of the lake is at (0,0) and the northeast corner at (50,50). The central island is a disk centered at (0,0) with the diameter of 15. A number of crocodiles are in the lake at various positions. Given the coordinates of each crocodile and the distance that James could jump, you must tell him whether or not he can escape.

    Input Specification:

    Each input file contains one test case. Each case starts with a line containing two positive integers N (≤), the number of crocodiles, and D, the maximum distance that James could jump. Then N lines follow, each containing the ( location of a crocodile. Note that no two crocodiles are staying at the same position.

    Output Specification:

    For each test case, print in a line "Yes" if James can escape, or "No" if not.

    Sample Input 1:

     14   20
     25  -15
    -25   28
      8   49
     29   15
    -35   -2
      5   28
     27  -29
     -8  -28
    -20  -35
    -25  -20
    -13   29
    -30   15
    -35   40
     12   12
    

    Sample Output 1:

    Yes
    

    Sample Input 2:

      4   13
    -12   12
     12   12
    -12  -12
     12  -12
    

    Sample Output 2:

    No
     1 #include<stdio.h>
     2 int sign = 0;
     3 double r = 7.5;
     4 int n,d;
     5 struct Node{
     6     int x;
     7     int y;
     8 }croc[105];
     9 
    10 int visited[105] = {0};
    11 
    12 void ReadIn(){
    13 
    14     for(int i = 0; i < n ; i++){
    15         scanf("%d %d",&croc[i].x,&croc[i].y);
    16     }
    17     return ;
    18 }
    19 int isOk(int k){     //判断能否上岸
    20     int d1 = 50-croc[k].x < croc[k].x + 50 ?50-croc[k].x:croc[k].x + 50;
    21     int d2 = 50-croc[k].y < croc[k].y + 50 ?50-croc[k].y:croc[k].y + 50;
    22     int dmin = d1<d2?d1:d2;
    23     if(dmin <= d){
    24         return 1;
    25     }
    26     return 0;
    27 }
    28 int isconnect(int k,int i){   //判断能否跳过去
    29     int dq = (croc[k].x-croc[i].x)*(croc[k].x-croc[i].x)+(croc[k].y-croc[i].y)*(croc[k].y-croc[i].y);
    30     if(dq <= d*d){
    31         return 1;
    32     }
    33     return 0;
    34 }
    35 
    36 void DFS(int k){
    37     if(isOk(k)){
    38         sign = 1;
    39         printf("Yes");
    40         return ;
    41     }
    42     visited[k] = 1;
    43     //printf("%d",k);
    44     for(int i = 0; i < n;i++){
    45         if(isconnect(k,i)&&visited[i]==0){
    46             DFS(i);
    47             if(sign){
    48                 break;
    49             }
    50         }
    51     }
    52     return ;
    53 }
    54 int isFirstStep(int i){
    55     int dq = croc[i].x*croc[i].x+croc[i].y*croc[i].y;
    56     //printf("dq%d=%d
    ",i,dq);
    57     if(dq <= (d+r)*(d+r)){
    58         return 1;
    59     }
    60     return 0;
    61 }
    62 
    63 
    64 
    65 
    66 int main(){
    67     scanf("%d %d",&n,&d);
    68     if(d+r>=50){
    69         printf("Yes");
    70         return 0;
    71     }
    72     ReadIn();
    73     for(int i = 0; i <n;i++){
    74         if(isFirstStep(i)){
    75             DFS(i);
    76         }
    77         if(sign){
    78             break;
    79         }
    80     }
    81     if(sign==0){
    82         printf("No");
    83     }
    84     return 0;
    85 }
     
  • 相关阅读:
    bzoj千题计划202:bzoj3191: [JLOI2013]卡牌游戏
    bzoj千题计划201:bzoj1820: [JSOI2010]Express Service 快递服务
    bzoj千题计划200:bzoj3106: [cqoi2013]棋盘游戏
    bzoj千题计划199:bzoj1055: [HAOI2008]玩具取名
    NOIP2017 小凯的疑惑
    Codeforces 837E. Vasya's Function
    bzoj1084: [SCOI2005]最大子矩阵
    bzoj4247: 挂饰
    Codeforces Round #276 (Div. 1) A. Bits
    bzoj千题计划196:bzoj4826: [Hnoi2017]影魔
  • 原文地址:https://www.cnblogs.com/jinjin-2018/p/8983178.html
Copyright © 2011-2022 走看看