首页 > 其他 > 详细

Minimum Adjustment Cost

时间:2016-06-29 18:33:03      阅读:198      评论:0      收藏:0      [点我收藏+]

Given an integer array, adjust each integers so that the difference of every adjacent integers are not greater than a given number target.

If the array before adjustment is A, the array after adjustment is B, you should minimize the sum of |A[i]-B[i]|

 Notice

You can assume each number in the array is a positive integer and not greater than 100.

Example

Given [1,4,2,3] and target = 1, one of the solutions is [2,3,2,3], the adjustment cost is 2 and it‘s minimal. 

Return 2.

Minimum Adjustment Cost

原文:http://www.cnblogs.com/sherylwang/p/5627769.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!