博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1160 Post Office (动态规划)
阅读量:5906 次
发布时间:2019-06-19

本文共 2464 字,大约阅读时间需要 8 分钟。

Post Office
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 15412   Accepted: 8351

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.

Sample Input

10 51 2 3 6 7 9 11 22 44 50

Sample Output

9

Source

题目大意:

有n个村庄,m个邮局。每一个村庄的位置坐标告诉你,如今要将m个邮局设立在这n个村庄里面,问你最小花费是多少?花费为每一个村庄到近期的邮局的距离和。

解题思路:

dp[i][j] 记录 i个邮局 j个村庄的最小花费,cost[k+1][j]。记录在k+1号村庄到 j 号村庄设立一个邮局的最小花费。

那么:dp[i][j]=min { dp[i][k]+cost[k+1][j] }

最后输出dp[m][n]就可以。

可是在k+1号村庄到 j 号村庄设立一个邮局的最小花费是多少呢?答案:中位数。设置在中间那个村庄就可以。

解题代码:

#include 
#include
#include
#include
#include
using namespace std;const int maxn=310;const int maxm=40;int cost[maxn][maxn],dp[maxm][maxn],a[maxn];int n,m,s[maxn][maxn];void input(){ for(int i=1;i<=n;i++) scanf("%d",&a[i]); memset(dp,-1,sizeof(dp)); for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ cost[i][j]=0; int mid=(i+j)/2; for(int k=i;k<=j;k++){ cost[i][j]+=abs(a[k]-a[mid]); } } }}int DP(int c,int r){ if(dp[c][r]!=-1) return dp[c][r]; if(c==1) return cost[1][r]; int ans=(1<<30); for(int i=1;i

转载地址:http://cacpx.baihongyu.com/

你可能感兴趣的文章
Hi~"自霉体人",阿里巴巴UC订阅号发布会强势来袭
查看>>
使用Scrapy爬取知乎网站
查看>>
深入Java虚拟机读书笔记[8:9]
查看>>
MFS 安装手记
查看>>
智能家居433M和zigbee到底哪个比较好
查看>>
malloc与free
查看>>
乐视网发布提示性公告:55%股份解禁在即
查看>>
TCP异常终止(reset报文)
查看>>
dtd与xsd去区别
查看>>
pyqt5_站点管理_email_windows
查看>>
在linux准备Java开发环境
查看>>
Docker Pull速度太慢如何提速
查看>>
前后端JSON数据传递对象包含对象处理
查看>>
敏捷个人2012.5月份户外活动报道:0费用京郊经典户外路线【京西古道】
查看>>
网站运营服务商选择
查看>>
javascript split函数讲解
查看>>
模拟redolog损坏,删除损坏并添加新的redolog
查看>>
Parallels安装Kali2.0遇到的问题及解决办法
查看>>
JAVA死锁和避免死锁
查看>>
我的友情链接
查看>>