poj1106-Post Office(DP)

Description
There is a straight highway with villages alongside the highway. The highway is represented as an integer axis, and the position of each village is identified with a single integer coordinate. There are no two villages in the same position. The distance between two positions is the absolute value of the difference of their integer coordinates. 

Post offices will be built in some, but not necessarily all of the villages. A village and the post office in it have the same position. For building the post offices, their positions should be chosen so that the total sum of all distances between each village and its nearest post office is minimum. 

You are to write a program which, given the positions of the villages and the number of post offices, computes the least possible sum of all distances between each village and its nearest post office. 

Input

Your program is to read from standard input. The first line contains two integers: the first is the number of villages V, 1 <= V <= 300, and the second is the number of post offices P, 1 <= P <= 30, P <= V. The second line contains V integers in increasing order. These V integers are the positions of the villages. For each position X it holds that 1 <= X <= 10000.

Output

The first line contains one integer S, which is the sum of all distances between each village and its nearest post office.

题目:用数轴描述一条高速公路,有V个村庄,每一个村庄坐落在数轴的某个点上,需要选择P个村庄在其中建立邮局,要求每个村庄到最近邮局的距离和最小。
1、考虑在V个村庄中只建立一个邮局的情况,显然可以知道,将邮局建立在中间的那个村庄即可。也就是在a到b间建立一个邮局,若使消耗最小,则应该将邮局建立在(a+b)/2这个村庄上。
2、下面考虑建立多个邮局的问题,可以这样将该问题拆分为若干子问题,在前i个村庄中建立j个邮局的最短距离,是在前k个村庄中建立【j-1】个邮局的最短距离 与 在【k+1】到第i个邮局建立【一个】邮局的最短距离的和。而建立一个邮局我们在上面已经求出。
3、状态表示
dp[i][j]:在前i个村庄中建立j个邮局的最小耗费(耗费是指在这V个村庄中,每个村庄到某指定邮局的距离之和)
sum[i][j]:在第i个村庄到第j个村庄中建立1个邮局的最小耗费
那么就有转移方程:dp[i][j] = min(dp[i][j],dp[k][j-1]+sum[k+1][i])  DP的边界状态即为dp[i][1] = sum[1][i]; 所要求的结果即为dp[vil_num][post_num];
4、然后就说说求sum数组的优化问题,可以假定有6个村庄,村庄的坐标已知分别为p1,p2,p3,p4,p5,p6;那么,如果要求sum[1][4]的话邮局需要建立在2或者3处,放在2处的消耗为p4-p2+p3-p2+p2-p1=p4-p2+p3-p1,放在3处的结果为p4-p3+p3-p2+p3-p1=p4+p3-p2-p1,可见,将邮局建在2处或3处是一样的。现在接着求sum[1][5],现在处于中点的村庄是3,那么1-4到3的距离和刚才已经求出了,即为sum[1][4],所以只需再加上5到3的距离即可。同样,求sum[1][6]的时候也可以用sum[1][5]加上6到中点的距离。所以有递推关系:sum[i][j] = sum[i][j-1] + p[j] -p[(i+j)/2]

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
using namespace std;
const int inf=100000010;
int sum[301][301],dp[301][301];
int min(int b,int c){
    if(b<c)
        return b;
    else
        return c;
}
int main()
{
    int m,n;
    while(~scanf("%d%d",&n,&m)){
        int a[301];
        memset(sum,0,sizeof(sum));
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        for(int i=1;i<n;i++){
            for(int j=i+1;j<=n;j++){
                sum[i][j]=sum[i][j-1]+a[j]-a[(i+j)/2];
            }
        }
        for(int i=1;i<=n;i++){
            dp[i][i]=0;
            dp[i][1]=sum[1][i];
        }
        for(int j=2;j<=m;j++){//j表示建立的邮局数
            for(int i=j+1;i<=n;i++){//村庄数肯定会大于邮局数
                dp[i][j]=inf;//dp[i][j]:在前i个村庄中建立j个邮局的最小耗费
                for(int k=j-1;k<i;k++){
                    dp[i][j]=min(dp[i][j],dp[k][j-1]+sum[k+1][i]);//sum[k+1][i]:在第k+1个村庄到第i个村庄中建立1个邮局的最小耗费
                }
            }
        }
        printf("%d\n",dp[n][m]);
    }
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/LJHAHA/p/10498150.html