1.floyd。
一个点到另一个点的最大距离,为所有路径最大距离的最小值(二分)。
2.答案输出。%.3lf,%.3f,遇到精度问题,要多尝试。
**********************************************
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
const int maxn = 500;
struct Node
{
int x,y;
}a[maxn];
int n;
double f[maxn][maxn];
double cal(int i,int j)
{
double t1=1.0*(a[i].x-a[j].x)*(a[i].x-a[j].x);
double t2=1.0*(a[i].y-a[j].y)*(a[i].y-a[j].y);
double ret=sqrt(t1+t2);
return ret;
}
void floyd()
{
for(int k = 1; k <= n; k++)
for(int i = 1; i <= n; i++)
for(int j = 1; j <= n; j++)
{
double tmp=max(f[i][k],f[k][j]);
if(tmp<f[i][j])f[i][j]=tmp;
}
}
int main()
{
//freopen("in.txt","r",stdin);
int cas=0;
while(scanf("%d",&n) && n)
{
for(int i = 1; i <= n; i++)
scanf("%d%d",&a[i].x,&a[i].y);
for(int i = 1; i <= n; i++)
for(int j = 1; j <= n; j++)
f[i][j]=cal(i,j);
floyd();
printf("Scenario #%d
",++cas);
printf("Frog Distance = %.3f
",f[1][2]);
}
return 0;
}
**********************************************