离散化dp - Making the Grade - POJ - 3666

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

7
1
3
2
4
5
3
9

Sample Output

3

题意:给定一个序列,求最小代价来使其变为单调递增或单调递减的序列
理解dp[i][j] 代表当前的代价,其中ij分别为前 i 个数的最大值为 j ,为使后面的代价更小应该让最大值 j 和dp最小。其转移方程应为mn=min(mn,dp[i-1][j]);dp[i][j]=abs(a[i]-b[j])+mn;

#include<iostream>
#include<algorithm>
using namespace std;
#define N 2020
#define ll long long
#define inf 0x3f3f3f3f
ll a[N],b[N],dp[N][N];
int main()
{
	ll n,i,j,mn,ans;
	cin>>n;
	for(i=1;i<=n;i++)
	{
		cin>>a[i];
		b[i]=a[i];
	}
	sort(b+1,b+1+n);
	for(i=1;i<=n;i++)
	{
		mn=inf;
		for(j=1;j<=n;j++)
		{
			mn=min(mn,dp[i-1][j]);
			dp[i][j]=abs(a[i]-b[j])+mn;
		}
	}
	mn=inf;
	for(i=1;i<=n;i++)
		mn=min(mn,dp[n][i]);
	cout<<mn;
}
posted @ 2021-09-19 10:13  新城R  阅读(31)  评论(0)    收藏  举报