码迷,mamicode.com
首页 > 其他好文 > 详细

poj2253青蛙跳跃

时间:2014-06-08 06:51:38      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:c   a   int   string   问题   name   

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\n",++cas);
        printf("Frog Distance = %.3f\n\n",f[1][2]);
    }
    return 0;
}

**********************************************

poj2253青蛙跳跃,布布扣,bubuko.com

poj2253青蛙跳跃

标签:c   a   int   string   问题   name   

原文地址:http://www.cnblogs.com/MobileRobot/p/3774095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!