zoukankan      html  css  js  c++  java
  • UVa 1347 Tour

    Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu

    Description


     

    John Doe, a skilled pilot, enjoys traveling. While on vacation, he rents a small plane and starts visiting beautiful places. To save money, John must determine the shortest closed tour that connects his destinations. Each destination is represented by a point in the plane pi = < xiyi ><tex2html_verbatim_mark> . John uses the following strategy: he starts from the leftmost point, then he goes strictly left to right to the rightmost point, and then he goes strictly right back to the starting point. It is known that the points have distinct x<tex2html_verbatim_mark> -coordinates.

    Write a program that, given a set of n<tex2html_verbatim_mark> points in the plane, computes the shortest closed tour that connects the points according to John's strategy.

    Input 

    The program input is from a text file. Each data set in the file stands for a particular set of points. For each set of points the data set contains the number of points, and the point coordinates in ascending order of the x<tex2html_verbatim_mark> coordinate. White spaces can occur freely in input. The input data are correct.

    Output 

    For each set of data, your program should print the result to the standard output from the beginning of a line. The tour length, a floating-point number with two fractional digits, represents the result.


    Note: An input/output sample is in the table below. Here there are two data sets. The first one contains 3 points specified by their x<tex2html_verbatim_mark> and y<tex2html_verbatim_mark>coordinates. The second point, for example, has the x<tex2html_verbatim_mark> coordinate 2, and the y<tex2html_verbatim_mark> coordinate 3. The result for each data set is the tour length, (6.47 for the first data set in the given example).

    Sample Input 

    3 
    1 1
    2 3
    3 1
    4 
    1 1 
    2 3
    3 1
    4 2
    

    Sample Output 

    6.47
    7.89

    可以把一个人的往返看作是两个人从起点同时出发走到终点,两人走到的点不重复

    则对于一个点,要么一个人过去,要么另一个人过去(不需要区分到底是哪个人)

     1 /*by SilverN*/
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<cmath>
     7 using namespace std;
     8 const int mxn=1024;
     9 int x[mxn],y[mxn];
    10 double mp[mxn][mxn];
    11 double f[mxn][mxn];
    12 int n;
    13 int main(){
    14     while(scanf("%d",&n)!=EOF){
    15         memset(f,11,sizeof(f));
    16         int i,j;
    17         for(i=1;i<=n;i++){
    18             scanf("%d%d",&x[i],&y[i]);
    19         }
    20         for(i=1;i<=n;i++){
    21             for(j=1;j<=n;j++){
    22                 mp[i][j]=sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
    23             }
    24         }
    25         for(i=n-1;i>=2;i--){//i倒推 
    26             for(j=1;j<i;j++){
    27                 if(i==n-1)f[i][j]=mp[i][n]+mp[j][n];//边界 
    28                 else f[i][j]=min(mp[i][i+1]+f[i+1][j],mp[j][i+1]+f[i+1][i]);
    29             }
    30         }
    31         printf("%.2f
    ",mp[1][2]+f[2][1]);
    32         //最终状态是一个人走到了点2,一个人走到了点1,需要再加上从2到1的距离 
    33     }
    34     return 0;
    35 }
  • 相关阅读:
    eclipse无法打断点,提示debug absent line number information
    jQueryValidator 验证非负数
    Oracle 11g中递归查询父类及子类集合
    修改上传功能时遇到的问题
    使用Tomcat页面乱码问题
    javaScript正则匹配汉字与特殊字符(项目中遇到关键字匹配的方法)
    Oracle 11g中字符串截取的实现
    软连接和硬连接区别 Alex
    Linux发行版的系统目录名称命名规则以及用途 Alex
    如何通过脚本实现显示版本号、CPU、硬盘和内存条大小 Alex
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/5589518.html
Copyright © 2011-2022 走看看