http://acm.pku.edu.cn/JudgeOnline/problem?id=1160
| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 7581 | Accepted: 4018 |
Description
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
Output
Sample Input
10 5 1 2 3 6 7 9 11 22 44 50
Sample Output
9
Source
题目大意:在一条高速公路上,有n个点,现要在其中m个上建立邮局,使得所有点到离它最近的邮局的距离最小。
分析:对于最优化问题,首选的算法是dp。分析题目不难得出经典状态:令f[i,j]表示前i个点上建立j个邮局的最小距离和。现在关键是状态转移。
这题是经典的剖分型dp。考虑在f[i,j-1]的基础上,再建一个邮局。若建在k处,则得到的解为f[k-1,j-1]+cost[k,i]。这里,cost[k,j]表示,在k..j之间建一个邮局的最小距离和,可以事先预处理得到。只建一个邮局的话,建在中点无疑是最好的。这样,就得到了状态转移方程:
f[i,j]:=min(f[k-1,j]+cost[k,i])。(j<=k<=i)。
时间复杂度为O(MN^2)。可以优化,利用四边形不等式,不过我不会= =
对于这题的数据规模,这个算法已经可以秒杀了。
codes:
针对在直线上选择最佳位置建立邮局的问题,采用动态规划算法求解最优方案,确保所有点到最近邮局的距离之和最小。
3954

被折叠的 条评论
为什么被折叠?



