zoukankan      html  css  js  c++  java
  • ZOJ Problem Set–1860 Dog & Gopher

    Time Limit: 2 Seconds      Memory Limit: 65536 KB


    A large field has a dog and a gopher. The dog wants to eat the gopher, while the gopher wants to run to safety through one of several gopher holes dug in the surface of the field.
    Neither the dog nor the gopher is a math major; however, neither is entirely stupid. The gopher decides on a particular gopher hole and heads for that hole in a straight line at a fixed speed. The dog, which is very good at reading body language, anticipates which hole the gopher has chosen, and heads at double the speed of the gopher to the hole, where it intends to gobble up the gopher. If the dog reaches the hole first, the gopher gets gobbled; otherwise, the gopher escapes.

    You have been retained by the gopher to select a hole through which it can escape, if such a hole exists.

    Input

    The first line of input contains four floating point numbers: the (x,y) coordinates of the gopher followed by the (x,y) coordinates of the dog. Subsequent lines of input each contain two floating point numbers: the (x,y) coordinates of a gopher hole. All distances are in metres, to the nearest mm.

    Input contains multiple test cases. Subsequent test cases are separated with a single blank line.

    Output

    Your output for each test case should consist of a single line. If the gopher can escape the line should read "The gopher can escape through the hole at (x,y)." identifying the appropriate hole to the nearest mm. Otherwise the output line should read "The gopher cannot escape." If the gopher may escape through more than one hole, choose the first one. There are not more than 1000 gopher holes and all coordinates are between -10000 and +10000.

    Sample Input
    1.000 1.000 2.000 2.000
    1.500 1.500

    2.000 2.000 1.000 1.000
    1.500 1.500
    2.500 2.500

    Sample Output
    The gopher cannot escape.
    The gopher can escape through the hole at (2.500,2.500).


    Source: University of Waterloo Local Contest 1999.09.25

      1: #include<iostream>
    
      2: #include<string>
    
      3: #include<sstream>
    
      4: #include<limits>
    
      5: #include<stdio.h>
    
      6: using namespace std;
    
      7: double distance(double x1, double y1, double x2, double y2)
    
      8: {
    
      9:   return (x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2);
    
     10: }
    
     11: int main(void)
    
     12: {
    
     13:   string coordinates;
    
     14:   while(getline(cin, coordinates))
    
     15:   {
    
     16:     if(coordinates == "") continue;
    
     17:     string holePosition;
    
     18:     double x_dog, y_dog, x_gopher, y_gopher;
    
     19:     double x_hole, y_hole;
    
     20:     istringstream is(coordinates);
    
     21:     is>>x_gopher>>y_gopher>>x_dog>>y_dog;
    
     22:     bool catched = true;
    
     23:     double nearestDistance = -1,crtDistance, x_nearest, y_nearest;
    
     24:     while(getline(cin, holePosition))
    
     25:     {
    
     26:       if(holePosition == "") break;
    
     27:       istringstream is0(holePosition);
    
     28:       is0>>x_hole>>y_hole;
    
     29:       crtDistance = distance(x_gopher, y_gopher, x_hole, y_hole);
    
     30:       if(distance(x_dog, y_dog, x_hole, y_hole) > 4*distance(x_gopher, y_gopher, x_hole, y_hole))
    
     31:       {
    
     32:         catched = false;
    
     33:         if(nearestDistance > crtDistance)
    
     34:         {
    
     35:           nearestDistance = crtDistance;
    
     36:           x_nearest = x_hole;
    
     37:           y_nearest = y_hole;
    
     38:         }
    
     39:       }
    
     40:     }
    
     41:     if(!catched)
    
     42:     {
    
     43:       printf("The gopher can escape through the hole at (%.3f,%.3f).\n", x_nearest, y_nearest);
    
     44:     }
    
     45:     else
    
     46:     {
    
     47:       cout<<"The gopher cannot escape."<<endl;
    
     48:     }
    
     49:   }
    
     50:   return 0;
    
     51: }
  • 相关阅读:
    centos下修改ip
    在sql2008的实例 中 编写存储过程 读取 版本为sql2005 的实例 中的某个数据库里的数据
    解决javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure报错
    Micronaut事务管理
    [make] 第二章 makefile 总述
    [make] 第一章 make 介绍
    [other] AutoHotKey.ahk
    2021年11月国产数据库大事记墨天轮
    风云再起之国产数据库风云榜2021年12月
    2021年12月墨天轮国产数据库排行榜: openGauss节节攀升拿下榜眼,GaussDB与TDSQL你争我夺各进一位
  • 原文地址:https://www.cnblogs.com/malloc/p/2516004.html
Copyright © 2011-2022 走看看