Codeforces-1013E:Hills(DP)

E. Hills
time limit per test1 second
memory limit per test512 megabytes
inputstandard input
outputstandard output
Welcome to Innopolis city. Throughout the whole year, Innopolis citizens suffer from everlasting city construction.

From the window in your room, you see the sequence of n hills, where i-th of them has height ai. The Innopolis administration wants to build some houses on the hills. However, for the sake of city appearance, a house can be only built on the hill, which is strictly higher than neighbouring hills (if they are present). For example, if the sequence of heights is 5, 4, 6, 2, then houses could be built on hills with heights 5 and 6 only.

The Innopolis administration has an excavator, that can decrease the height of an arbitrary hill by one in one hour. The excavator can only work on one hill at a time. It is allowed to decrease hills up to zero height, or even to negative values. Increasing height of any hill is impossible. The city administration wants to build k houses, so there must be at least k hills that satisfy the condition above. What is the minimum time required to adjust the hills to achieve the administration’s plan?

However, the exact value of k is not yet determined, so could you please calculate answers for all k in range ? Here denotes n divided by two, rounded up.

Input
The first line of input contains the only integer n ( 1 n 5000 ) —the number of the hills in the sequence.

Second line contains n integers a i ( 1 a i 100 000 ) —the heights of the hills in the sequence.

Output
Print exactly numbers separated by spaces. The i-th printed number should be equal to the minimum number of hours required to level hills so it becomes possible to build i houses.

Examples
input
5
1 1 1 1 1
output
1 2 2
input
3
1 2 3
output
0 2
input
5
1 2 3 2 2
output
0 1 3
Note
In the first example, to get at least one hill suitable for construction, one can decrease the second hill by one in one hour, then the sequence of heights becomes 1, 0, 1, 1, 1 and the first hill becomes suitable for construction.

In the first example, to get at least two or at least three suitable hills, one can decrease the second and the fourth hills, then the sequence of heights becomes 1, 0, 1, 0, 1, and hills 1, 3, 5 become suitable for construction.

思路:DP。 d [ i ] [ j ] [ k ] 表示前 i 座山建了 j 个房子, k = 0 / 1 表示第 i 座山没建 / 建了房子。

#include<bits/stdc++.h>
using namespace std;
const int MAX=5e3+10;
const int MOD=1e9+7;
const double PI=acos(-1.0);
typedef long long ll;
int max(int x,int y,int z){return max(z,max(x,y));}
int a[MAX];
int d[MAX][MAX][2];
int main()
{
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)scanf("%d",&a[i]);
    memset(d,0x3f,sizeof d);
    for(int i=1;i<=n;i++)
    {
        if(i==1)
        {
            d[i][1][1]=0;
            d[i][0][0]=0;
            continue;
        }
        if(i==2)
        {
            d[i][1][1]=max(a[1]-a[2]+1,0);
            d[i][1][0]=max(a[2]-a[1]+1,0);
            d[i][0][0]=0;
            continue;
        }
        for(int j=0;j<=i;j++)
        {
            d[i][j+1][1]=min(d[i][j+1][1],d[i-2][j][1]+max(0,a[i-1]-a[i]+1,a[i-1]-a[i-2]+1));
            d[i][j+1][1]=min(d[i][j+1][1],d[i-2][j][0]+max(0,a[i-1]-a[i]+1));
            d[i][j][0]=min(d[i][j][0],d[i-1][j][0]);
            d[i][j][0]=min(d[i][j][0],d[i-1][j][1]+max(a[i]-a[i-1]+1,0));
        }
    }
    for(int i=1;i<=(n+1)/2;i++)printf("%d ",min(d[n][i][0],d[n][i][1]));
    return 0;
}

猜你喜欢

转载自blog.csdn.net/Mitsuha_/article/details/81474955
今日推荐