博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2253 Frogger(Dijkstra)
阅读量:5075 次
发布时间:2019-06-12

本文共 3485 字,大约阅读时间需要 11 分钟。

Frogger
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 39453   Accepted: 12691

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

20 03 4317 419 418 50

Sample Output

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

 

#include
#include
#include
#include
#include
#include
using namespace std;typedef __int64 LL;const int maxn = 205;const int INF = 0x3f3f3f3f;struct Edge{ int u,v,w,next; bool operator < (const Edge &a)const { return w > a.w; }}edge[maxn*maxn<<1];struct Point{ int x,y;}point[maxn];int tot = 0,head[maxn],dis[maxn];bool vis[maxn];double dist(int x1,int y1,int x2,int y2){ return (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2);}void addedge(int u,int v,int w){ edge[tot] = (Edge){u,v,w,head[u] }; head[u] = tot++; }void dijkstra(){ priority_queue
que; memset(dis,INF,sizeof(dis)); memset(vis,false,sizeof(vis)); Edge p; p.v = 1; que.push(p); dis[1] = 0; while (!que.empty()) { p = que.top(); que.pop(); int u = p.v; if (vis[u]) continue; vis[u] = true; for (int i = head[u]; ~i;i = edge[i].next) { int w = max(edge[i].w,dis[u]); int v = edge[i].v; if (dis[v] > w) { dis[v] = w; p.u = u,p.v = v,p.w = w; que.push(p); } } }}int main(){ //freopen("input.txt","r",stdin); int N,tcase = 1; while (~scanf("%d",&N) && N) { memset(head,-1,sizeof(head)); tot = 0; for (int i = 0;i < N;i++) scanf("%d%d",&point[i].x,&point[i].y); for (int i = 0;i < N;i++) { for (int j = 0;j < N;j++) { int diss = dist(point[i].x,point[i].y,point[j].x,point[j].y); addedge(i + 1,j + 1,diss); addedge(j + 1,i + 1,diss); } } dijkstra(); double res = sqrt(dis[2]); printf("Scenario #%d\n",tcase++); printf("Frog Distance = %.3f\n\n",res); } return 0;}

  

 

转载于:https://www.cnblogs.com/ZhaoxiCheung/p/6087697.html

你可能感兴趣的文章
动态规划算法之最大子段和
查看>>
linux c:关联变量的双for循环
查看>>
深入浅出理解zend framework(三)
查看>>
python语句----->if语句,while语句,for循环
查看>>
javascript之数组操作
查看>>
LinkedList源码分析
查看>>
TF-IDF原理
查看>>
用JS制作博客页面背景随滚动渐变的效果
查看>>
JavaScript的迭代函数与迭代函数的实现
查看>>
一步步教你学会browserify
查看>>
Jmeter入门实例
查看>>
亲近用户—回归本质
查看>>
中文脏话识别的解决方案
查看>>
CSS之不常用但重要的样式总结
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>
日常开发时遇到的一些坑(三)
查看>>
Eclipse 安装SVN插件
查看>>
深度学习
查看>>
TCP粘包问题及解决方案
查看>>