zoukankan      html  css  js  c++  java
  • 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));
    }
  • 相关阅读:
    MVC 中的Areas支持
    webAPI 自动生成帮助文档
    ASP.NET Web API系列教程目录
    ASP.NET MVC学习系列 WebAPI初探
    win7下配置apache和php
    VS2010打不开VS2012 .NET MVC 工程,及打开后部分模块加载不正确的解决办法
    Sqlserver通过链接服务器访问Oracle的解决办法
    [C# 基础知识系列]专题一:深入解析委托——C#中为什么要引入委托
    [C# 基础知识系列]专题四:事件揭秘
    [C# 基础知识系列]专题十六:Linq介绍
  • 原文地址:https://www.cnblogs.com/wangsong/p/8012727.html
Copyright © 2011-2022 走看看