记录编号 |
248534 |
评测结果 |
AAAAAAAA |
题目名称 |
[Ural 1143] 青蛙的烦恼 |
最终得分 |
100 |
用户昵称 |
NewBee |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2016-04-10 16:22:56 |
内存使用 |
0.34 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cmath>
#define Cu fclose(stdin);fclose(stdout);return 0;
#define Begin freopen("frogpuzzle.in","r",stdin);freopen("frogpuzzle.out","w",stdout);chul();
//designed by New_Beeؼ
using namespace std;
const int maxn=65;
double f[maxn][maxn][2];
double dis[maxn][maxn];
double px[maxn],py[maxn];
void chul();
double getmin(double,double);
int main(){
Begin;
}
void chul(){
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%lf%lf",&px[i],&py[i]);
}
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
dis[i][j]=sqrt((px[i]-px[j])*(px[i]-px[j])+(py[i]-py[j])*(py[i]-py[j]));
}
}
for(int d=2;d<=n;d++){
for(int i=1;i<=n-d+1;i++){
int j=i+d-1;
f[i][j][0]=getmin(f[i][j-1][1]+dis[i][j],f[i][j-1][0]+dis[j-1][j]);
f[i][j][1]=getmin(f[i+1][j][0]+dis[i][j],f[i+1][j][1]+dis[i][i+1]);
}
}
printf("%.3lf",f[1][n][1]);
}
double getmin(double x,double y){
if(x>y)return y;
return x;
}