• 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: }
  • 相关阅读:
    常见设备标记长度查询
    word怎么在方框中打对号
    shell dict 操作
    词表数据转换
    GoLand tool tips
    mac使用技巧
    人生三大陷阱
    【js重学系列】执行上下文
    uniapp-ui库
    【js重学系列】instanceof
  • 原文地址:https://www.cnblogs.com/malloc/p/2516004.html
Copyright © 2020-2023  润新知