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
| A 1 - B 1| + | A 2 - B 2| + … + | 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
- 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.
【ACM练习|POJ3666 离散化的dp】7
1
3
2
4
5
3
9
Sample Output
3
这题我是想的要考虑两种情况一种是降序一种是升序写完以后两个比较
但是太蠢了
然后发现这两种其实是可以合并的
那就是两个循环都从头开始
如果后的b比前面的差要小那么就取后面的就是降序
反之则是升序
因为一开始使用sort拍好的数组所以他一定是有一个顺序
mi一直都是从小到大,从小到大的遍历,不会直接弄到他自己产生0的这种尴尬情况…
也基本上相当于另开了一个循环..
从1一直循环到b的那种…
相比而言真的是很蠢..
这种思想值得牢记
另外poj好像对abs这个函数里面传的值得类型要求很毛病
不int就编译错误妈的智障
#include
#include
#include
#include
#include
#include
#include
using namespace std;
long long zhi[2001];
long long zhi1[2001];
long long dp[4000][4000];
int main()
{
int n;
cin >> n;
for (int a = 1;
a <= n;
a++)
{
cin >> zhi[a];
zhi1[a] = zhi[a];
}
sort(zhi1 + 1, zhi1 + n + 1);
for (int a = 1;
a <= n;
a++)
{
long long mi = dp[a - 1][1];
for (int b = 1;
b <= n;
b++)
{
mi = min(dp[a - 1][b], mi);
dp[a][b] = abs(int(zhi[a] - zhi1[b])) + mi;
}
}
long long sum = 0x7fffffff;
for (int a = 1;
a <= n;
a++)sum = min(sum, dp[n][a]);
cout << sum << endl;
return 0;
}
推荐阅读
- 技术|为参加2021年蓝桥杯Java软件开发大学B组细心整理常见基础知识、搜索和常用算法解析例题(持续更新...)
- 数据结构与算法|【算法】力扣第 266场周赛
- #|算法设计与分析(Java实现)—— 动态规划 (0-1 背包问题)
- 动态规划|暴力递归经典问题
- 动态规划|动态规划 —— 状压DP (附一些位运算小知识)
- 区间DP —— 能量项链
- 动态规划 —— 区间DP
- Codeforces|Codeforces Round #605 (Div. 3) D. Remove One Element
- LeetCode-28 实现strStr() KMP算法
- leetcode|递归、动态规划--Leetcode(python)