POJ Training Plan 2253_Frogger (Shortest Path/floyd), poj2253_frogger

Source: Internet
Author: User

POJ Training Plan 2253_Frogger (Shortest Path/floyd), poj2253_frogger

Solution report

Question:

Calculate the minimum number of all paths from 0 to 1.

Ideas:

Floyd.

#include <iostream>#include <cstdio>#include <cstring>#include <cmath>#define inf 0x3f3f3f3fusing namespace std;int n,m,q;double mmap[210][210];struct node {    double x,y;} p[210];double dis(node p1,node p2) {    return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));}void floyd() {    for(int k=0; k<n; k++)        for(int i=0; i<n; i++)            for(int j=0; j<n; j++)                mmap[i][j]=min(mmap[i][j],max(mmap[i][k],mmap[k][j]));}int main() {    int i,j,u,v,w,k=1;    while(~scanf("%d",&n)) {        if(!n)break;        for(i=0; i<n; i++) {            for(j=0; j<n; j++)                mmap[i][j]=(double)inf;            mmap[i][i]=0;        }        for(i=0; i<n; i++) {            scanf("%lf%lf",&p[i].x,&p[i].y);        }        for(i=0; i<n; i++) {            for(j=0; j<n; j++) {                mmap[i][j]=dis(p[i],p[j]);            }        }        floyd();        printf("Scenario #%d\n",k++);        printf("Frog Distance = %.3lf\n",mmap[0][1]);        printf("\n");    }    return 0;}


Frogger
Time Limit:1000 MS   Memory Limit:65536 K
Total Submissions:25958   Accepted:8431

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 login Ming 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 in 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

20 03 4317 419 418 50

Sample Output

Scenario #1Frog Distance = 5.000Scenario #2Frog Distance = 1.414




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.