文章标题

简介:

Making the Grade 
Time Limit: 1000MS Memory Limit: 65536K 
Total Submissions: 4732 Accepted: 2244 
Description

A straight dirt road connects two fields on FJ’s farm, but it changes elevation more than FJ would like. His cows do not mind climbing up or down a single slope, but they are not fond of an alternating succession of hills and valleys. FJ would like to add and remove dirt from the road so that it becomes one monotonic slope (either sloping up or down).

You are given N integers A1, … , AN (1 ≤ N ≤ 2,000) describing the elevation (0 ≤ Ai ≤ 1,000,000,000) at each of N equally-spaced positions along the road, starting at the first field and ending at the other. FJ would like to adjust these elevations to a new sequence B1, . … , BN that is either nonincreasing or nondecreasing. Since it costs the same amount of money to add or remove dirt at any position along the road, the total cost of modifying the road is

|A1 - B1| + |A2 - B2| + … + |AN - BN | 
Please compute the minimum cost of grading his road so it becomes a continuous slope. FJ happily informs you that signed 32-bit integers can certainly be used to compute the answer.

Input

  • Line 1: A single integer: N
  • Lines 2..N+1: Line i+1 contains a single integer elevation: Ai

Output

  • Line 1: A single integer that is the minimum cost for FJ to grade his dirt road so it becomes nonincreasing or nondecreasing in elevation.

Sample Input









Sample Output


Source

/* 
题意:修改一些数据,使之非严格递增 (1 2 3 3 4 )(总的趋势是增,能够有同样数)

思路:dp[i][j] 代表前i个数改成满足题意,而且第i个数为第j小的最小消耗值 
那么dp[i][j]=min(dp[i-1][k]+a[i]-b[j]) (b[j])代表排序后的第j小 
当中1<=k<=j;然后发现能够用滚动数组 
*/

include

include

include

include

include

include

include

include

include

include

include

typedef __int64 ll;

define L(x) (x<<1)

define R(x) (x<<1|1)

define MID(x,y) ((x+y)>>1)

using namespace std;

define INF 0x3f3f3f3f

define N 2005

ll dp[2][N];

int a[N],b[N]; 
int n;

int main() 

int i,j; 
while(~scanf(“%d”,&n)) 

for(i=1;i<=n;i++) 

scanf(“%d”,&a[i]); 
b[i]=a[i]; 

sort(b+1,b+n+1); 
for(i=1;i<=n;i++) 
dp[0][i]=fabs(a[1]-b[i]); 
int now=0; 
for(i=2;i<=n;i++) 

__int64 temp=dp[now][1]; //temp记录dp[i-1][1~j]的最小值 
for(j=1;j<=n;j++) 

temp=min(temp,dp[now][j]); 
dp[now^1][j]=temp+abs(a[i]-b[j]); 

now=now^1; 

__int64 ans=dp[now][1];

    for(i=2;i<=n;i++)
        if(dp[now][i]<ans) ans=dp[now][i];
    printf("%I64d\n",ans);

}

return 0; 
}








本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5261599.html,如需转载请自行联系原作者

相关文章
|
1月前
标题和段落标记
【2月更文挑战第9天】标题和段落标记。
17 2
|
搜索推荐 前端开发 开发者
标题| 学习笔记
快速学习标题。
62 0
标题| 学习笔记
html+css实战192-标题
html+css实战192-标题
143 0
html+css实战192-标题
html+css实战108-新闻列表-标题
html+css实战108-新闻列表-标题
200 0
html+css实战108-新闻列表-标题
html+css实战10-标题和段落
html+css实战10-标题和段落
83 0
html+css实战10-标题和段落
|
前端开发 开发者
handsome主题标题居中
handsome主题标题居中
168 0
handsome主题标题居中
|
消息中间件 弹性计算 数据安全/隐私保护
取个响亮一点的标题
关于我使用阿里云ECS服务器的一些收获, Docker+Xshell+域名 == 懒(哈哈) 本人项目地址 欢迎各位访问 http://www.yunq.xyz:8008/sort/1/0 用户名 myroot 密码:myroot 如果有bug请不要联系我,我好累不想改。
323 0
|
弹性计算 Java 关系型数据库
标题
飞天加速计划·高校学生在家实践
|
搜索推荐 项目管理 UED
网站页面title标题的设置方法技巧
网站页面title标题的设置方法技巧
1051 0