Frogger
Time limit:1000 ms |
|
Memory limit:65536 K |
Total submissions:26417 |
|
Accepted:8592 |
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
Source
There are multiple lines from the start point to the end point to find the minimum value of the maximum edge of all lines. Problem: Dijkstra and DIS arrays access the "cut" from the current point to the origin ";
#include <stdio.h>#include <math.h>#include <string.h>#define maxn 202#define inf 0x3f3f3f3fint n;struct Node {int x, y;} Stone[maxn];double map[maxn][maxn], dis[maxn];bool vis[maxn];double min(double a, double b) {return a < b ? a : b;}double max(double a, double b) {return a > b ? a : b;}double calDis(int i, int j) {double x = Stone[i].x - Stone[j].x;double y = Stone[i].y - Stone[j].y;return sqrt(x * x + y * y);}int getNext() {int pos = -1, i;double val = inf;for(i = 0; i < n; ++i)if(!vis[i] && dis[i] < val) {val = dis[i]; pos = i; }return pos;}void Dijkstra(int start, int end) {int u = start, v, i;for(i = 0; i < n; ++i) {vis[i] = 0; dis[i] = inf;}dis[u] = 0.0;while(u != -1) {vis[u] = 1;for(i = 0; i < n; ++i)dis[i] = min(dis[i], max(map[u][i], dis[u]));u = getNext();if(u == end) return;}}int main() {// freopen("stdin.txt", "r", stdin);int i, j, cas = 1;while(scanf("%d", &n), n) {for(i = 0; i < n; ++i) {scanf("%d%d", &Stone[i].x, &Stone[i].y);for(j = 0; j < i; ++j)map[i][j] = map[j][i] = calDis(i, j);map[i][i] = 0.0;}Dijkstra(0, 1);printf("Scenario #%d\nFrog Distance = %.3lf\n\n", cas++, dis[1]);}return 0;}
Poj2253 Frogger [Dijkstra]