POJ-2253,Frogger(最短路问题)

简介: POJ-2253,Frogger(最短路问题)

Description:


Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to visit her, but since the water is dirty and full of tourists' sunscreen, he wants to avoid swimming and instead reach her by jumping.

Unfortunately Fiona's stone is out of his jump range. Therefore Freddy considers to use other stones as intermediate stops and reach her by a sequence of several small jumps.

To execute a given sequence of jumps, a frog's jump range obviously must be at least as long as the longest jump occuring in the sequence.

The frog distance (humans also call it minimax distance) between two stones therefore is defined as the minimum necessary jump range over all possible paths between the two stones.


You are given the coordinates of Freddy's stone, Fiona's stone and all other stones in the lake. Your job is to compute the frog distance between Freddy's and Fiona's stone.  


Input:


The input will contain one or more test cases. The first line of each test case will contain the number of stones n (2<=n<=200). The next n lines each contain two integers xi,yi (0 <= xi,yi <= 1000) representing the coordinates of stone #i. Stone #1 is Freddy's stone, stone #2 is Fiona's stone, the other n-2 stones are unoccupied. There's a blank line following each test case. Input is terminated by a value of zero (0) for n.  


Output:


For each test case, print a line saying "Scenario #x" and a line saying "Frog Distance = y" where x is replaced by the test case number (they are numbered from 1) and y is replaced by the appropriate real number, printed to three decimals. Put a blank line after each test case, even after the last one.  


Sample Input:


2


0 0


3 4


3


17 4


19 4


18 5


0  


Sample Output:


Scenario #1


Frog Distance = 5.000


Scenario #2


Frog Distance = 1.414  


程序代码:


#include<cstdio>
#include<cmath>
#define MAX(x,y)((x)>(y)?(x):(y))
struct point
{
  double x,y;
  bool vis;
};
double distance(point &a,point &b)
{
  return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
}
point stone[210];
double dist[210][210];
int main()
{
  int n,ans=0;
  while((scanf("%d",&n)!=EOF)&&n)
  {
    for(int i=0;i<n;i++)
    {
      scanf("%lf%lf",&stone[i].x,&stone[i].y);
      stone[i].vis=false;
    }
    for(int i=0;i<n;i++)
    {
      for(int j=0;j<n;j++)
      {
        dist[i][j]=dist[j][i]=distance(stone[i],stone[j]);
      }
    }
    for(int k=0;k<n;k++)
    {
      for(int i=0;i<n;i++)
      {
        for(int j=0;j<n;j++)
        {
          if(dist[i][j]>dist[i][k]&&
            dist[i][j]>dist[j][k])
            dist[i][j]=MAX(dist[i][k],dist[j][k]);
        }
      }
    }
    printf("Scenario #%d\n",++ans);
    printf("Frog Distance = %.3f\n\n",dist[0][1]);
  }
  return 0;
}


相关文章
HDU-1874,畅通工程续(Floyd最短路)
HDU-1874,畅通工程续(Floyd最短路)
|
人机交互
POJ-2524,Ubiquitous Religions(并查集模板题)
POJ-2524,Ubiquitous Religions(并查集模板题)
|
并行计算 算法 Java
HDU 1874 畅通工程续【Floyd算法实现】
畅通工程续 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 53806    Accepted Submission(s): 20092 Problem Description 某省自从实行了很多年的畅通工程计划后,终于修建了很多路。
1086 0
|
人工智能
POJ 2370 Democracy in danger(简单贪心)
Democracy in danger Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3388   Accepted: 2508 Description In one of the...
954 0
poj supermaket (贪心)
http://poj.org/problem?id=1456 #include #include #include using namespace std; struct nod { int a; int d; }; bool cmp(nod x,nod y) { return x.
696 0