101455: [AtCoder]ABC145 F - Laminate

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

We will create an artwork by painting black some squares in a white square grid with $10^9$ rows and $N$ columns.
The current plan is as follows: for the $i$-th column from the left, we will paint the $H_i$ bottommost squares and will not paint the other squares in that column.
Before starting to work, you can choose at most $K$ columns (possibly zero) and change the values of $H_i$ for these columns to any integers of your choice between $0$ and $10^9$ (inclusive).
Different values can be chosen for different columns.

Then, you will create the modified artwork by repeating the following operation:

  • Choose one or more consecutive squares in one row and paint them black. (Squares already painted black can be painted again, but squares not to be painted according to the modified plan should not be painted.)

Find the minimum number of times you need to perform this operation.

Constraints

  • $1 \leq N \leq 300$
  • $0 \leq K \leq N$
  • $0 \leq H_i \leq 10^9$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$N$ $K$
$H_1$ $H_2$ $...$ $H_N$

Output

Print the minimum number of operations required.


Sample Input 1

4 1
2 3 4 1

Sample Output 1

3

For example, by changing the value of $H_3$ to $2$, you can create the modified artwork by the following three operations:

  • Paint black the $1$-st through $4$-th squares from the left in the $1$-st row from the bottom.
  • Paint black the $1$-st through $3$-rd squares from the left in the $2$-nd row from the bottom.
  • Paint black the $2$-nd square from the left in the $3$-rd row from the bottom.

Sample Input 2

6 2
8 6 9 1 2 1

Sample Output 2

7

Sample Input 3

10 0
1 1000000000 1 1000000000 1 1000000000 1 1000000000 1 1000000000

Sample Output 3

4999999996

Input

题意翻译

现在有 $n$ 个柱子排在一起,每个柱子高度为 $h_i$。 有至多 $k$ 次机会任意修改某些柱子的高度。 然后,执行操作:每次可以横向消去一段连续的柱子。 问最终消除所有柱子的操作次数至少是多少。 By@[pengzijun](https://www.luogu.com.cn/user/556362)

加入题单

上一题 下一题 算法标签: