poj2253

此题略坑,%.3lf用g++一直WA,c++过的

 1 //Accepted    468 KB    16 ms
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <iostream>
 5 #include <queue>
 6 #include <cmath>
 7 #include <algorithm>
 8 using namespace std;
 9 /**
10   * This is a documentation comment block
11   * 如果有一天你坚持不下去了,就想想你为什么走到这儿!
12   * @authr songt
13   */
14 const int imax_n = 205;
15 const int inf = 100000000;
16 int x[imax_n];
17 int y[imax_n];
18 double a[imax_n][imax_n];
19 bool vis[imax_n];
20 double dis[imax_n];
21 int n;
22 double max(double a,double b)
23 {
24     if (a-b<1e-9) return b;
25     return a;
26 }
27 double min(double a,double b)
28 {
29     if (a-b>1e-9) return b;
30     return a;
31 }
32 void dij(int src)
33 {
34     memset(vis,false,sizeof(vis));
35     vis[src]=true;
36     for (int i=1;i<=n;i++)
37     dis[i]=a[src][i];
38     for (int i=1;i<=n;i++)
39     {
40         double temp=inf;
41         int k=-1;
42         for (int j=1;j<=n;j++)
43         {
44             if (vis[j]) continue;
45             if (temp-dis[j]>1e-9)
46             {
47                 temp=dis[j];
48                 k=j;
49             }
50         }
51         if (k==-1) return ;
52         vis[k]=true;
53         for (int j=1;j<=n;j++)
54         if (!vis[j])
55         {
56             dis[j]=min(dis[j],max(dis[k],a[k][j]));
57         }
58     }
59 }
60 int main()
61 {
62     int t=0;
63     while (scanf("%d",&n),n)
64     {
65         for (int i=1;i<=n;i++)
66         {
67             scanf("%d%d",&x[i],&y[i]);
68         }
69         for (int i=1;i<=n;i++)
70         {
71             for (int j=1;j<=n;j++)
72             a[i][j]=sqrt((double )(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
73         }
74         dij(1);
75         printf("Scenario #%d\nFrog Distance = %.3lf\n\n",++t,dis[2]+0.000005);
76     }
77     return 0;
78 }

时间: 2024-10-05 05:11:50

poj2253的相关文章

poj2253青蛙跳跃

1.floyd. 一个点到另一个点的最大距离,为所有路径最大距离的最小值(二分). 2.答案输出.%.3lf,%.3f,遇到精度问题,要多尝试. ********************************************** #include<cstdio>#include<cstring>#include<algorithm>#include<cmath>using namespace std;const int maxn = 500;str

POJ2253 Frogger 【Floyd】

讲的是,一只雄青蛙要从一个石头到另外一个石头上去找某只雌青蛙,但是这两个石头隔得太远,青蛙跳不过去,所幸,湖面上还有很多其他石头,所以青蛙可以借助别的石头一步一步地跳向那只雌青蛙所在的石头.显然青蛙可能有多种路径,比如其中一条是 2,3,4,2,1 ,它跳了五次,数字代表每次跳的距离也就是路径上相邻两个石头之间的距离,那么这只青蛙的弹跳能力至少是4才能跳过去.在其他的路径中,可能要求青蛙的弹跳是5,是8,是1,是100,等等,这个问题求青蛙需要的最小弹跳能力.其实也就是个最大值中取最小的问题.

poj2253 Frogger(最短路变型或者最小生成树)

1 /* 2 题意:就是源点到终点有多条的路径,每一条路径中都有一段最大的距离! 3 求这些路径中最大距离的最小值! 4 5 Dijkstra, Floyd, spfa都是可以的!只不过是将松弛的条件变一下就行了! 6 7 想了一下,这道题用最小生成树做也可以啊,图总是连通的嘛!所以建一棵最小 8 生成树,然后dfs一下,从源点1,到终点2的路径上,查找边长最大的路径! 9 附上代码..... 10 */ 11 #include<iostream> 12 #include<cstdio&

POJ2253&amp;ZOJ1942--Frogger【SPFA】单源最短路变形

链接:http://poj.org/problem?id=2253 题意:一个青蛙在一块石头上,看到了另一个青蛙在另一块石头上,它想跳过去找它,如果距离太远它就需要借助别的石头当跳板,两块石头之间的青蛙距离被定义成两块石头之间所有路径中最大跳跃距离的最小值,求两个青蛙之间的青蛙距离. poj2263和它类似,链接:http://poj.org/problem?id=2263 解题报告:Here 这是最短路的变形,每两点之间都有路可以跳,更新最短路的值,权值记录成目前到这一点的最小青蛙距离就行了

POJ2253——Frogger(Floyd变形)

Frogger DescriptionFreddy 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 swimm

poj2253 Frogger(Floyd)

题目链接 http://poj.org/problem?id=2253 题意 给出青蛙A,B和若干石头的坐标,现在青蛙A要跳到青蛙B所在的石头上,求出所有路径中最远那一跳的最小值. 思路 Floyd算法的变形,将求两点之间的最短路改成求两点之间最大边权的最小值即可. 代码 1 #include <algorithm> 2 #include <iostream> 3 #include <cstring> 4 #include <cstdio> 5 #inclu

POJ-2253 Frogger dijsktra查找间隔最小的路径

题目链接:https://cn.vjudge.net/problem/POJ-2253 题意 一只Forg需要从节点1走到节点n 现要找一条各个间隔最小的路径 问间隔最小是多少 思路 用dijsktra就好 查找间隔最小的路径 注意浮点数的比较 代码 #include <cstdio> #include <vector> #include <queue> #include <cmath> using namespace std; const int maxn

POJ2253(dijkstra堆优化)

https://vjudge.net/problem/POJ-2253 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 wan

POJ2253(floyd)

Frogger Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 32257   Accepted: 10396 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,

POJ2253 Frogger 【Dijkstra】

Frogger Time Limit: 1000MS   Memory Limit: 65536K 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,