• UVA


    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 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 and y coordinates. The second point, for example, has the x coordinate 2, and the y 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

    将一个人的往返视为 两个人同时从起点出发,中间不走重复的点,最终走到终点

    dp[i][j]表示 第一个人走到i时,第二个人走到j时,两个人离终点剩下的最短距离

    通过观察发现几个规律

    1. 两个人是可以互换的,所以dp[i][j]=dp[j][i]

    2. 如何判断第二个人不会重复走第一个人的路, 可以根据1我们可以假定第一个人先走过的路第二个人不会走,这样每当第二个人走的时候,下一步就是 dp[i][i+1] = dp[i+1][i]

    3. 根据2可以得到转移方程 dp[i][j] = min(dis(i,i+1) + dp[i+1][j],  dis(j, i+1) + dp[i+1][1])

    #include <iostream>
    #include <cmath>
    #include <string.h>
    #define NUM 1000
    using namespace std;
    int N;
    double dp[NUM][NUM];
    struct {
        int x, y;
    } d[NUM];
    
    double getDp(int i, int j);
    
    double dist(int i, int j);
    
    int main() {
        while (cin >> N && N) {
            memset(dp, 0, sizeof(dp));
            for (int i = 1; i <= N; ++i) {
                cin >> d[i].x >> d[i].y;
            }
            printf("%.2f
    ", getDp(1, 1));
        }
    }
    
    double getDp(int i, int j) {
        if (dp[i][j] != 0)
            return dp[i][j];
        if (i == N)
            return dp[i][j] = dist(i, j);
        return dp[i][j] = min(dist(i, i + 1) + getDp(i + 1, j), dist(j, i + 1) + getDp(i + 1, i));
    }
    
    double dist(int i, int j) {
        return sqrt(pow(d[i].x - d[j].x, 2) + pow(d[i].y - d[j].y, 2));
    }
  • 相关阅读:
    STL的适配器、仿函数学习之一:accumulate和for_each的使用心得
    百度笔试题--------数字拼接,求出最小的那个
    百度面试题----依概率生成
    百度笔试题----C语言版revert
    百度笔度题-----蚂蚁爬杆问题
    Try....Catch......Finally 的执行顺序
    数据库SQL SERVER 2008R2 远程连接配置说明
    C#中的数据库的连接方式分类说明(转载)
    网络通信—udp使用领悟
    (转载)C#网络通信之TCP连接
  • 原文地址:https://www.cnblogs.com/wangsong/p/8012727.html
Copyright © 2020-2023  润新知