#ABC145F. [ABC145F] Laminate

[ABC145F] Laminate

Score : 600600 points

Problem Statement

We will create an artwork by painting black some squares in a white square grid with 10910^9 rows and NN columns. The current plan is as follows: for the ii-th column from the left, we will paint the HiH_i bottommost squares and will not paint the other squares in that column. Before starting to work, you can choose at most KK columns (possibly zero) and change the values of HiH_i for these columns to any integers of your choice between 00 and 10910^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

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

Input

Input is given from Standard Input in the following format:

NN KK

H1H_1 H2H_2 ...... HNH_N

Output

Print the minimum number of operations required.

4 1
2 3 4 1
3

For example, by changing the value of H3H_3 to 22, you can create the modified artwork by the following three operations:

  • Paint black the 11-st through 44-th squares from the left in the 11-st row from the bottom.
  • Paint black the 11-st through 33-rd squares from the left in the 22-nd row from the bottom.
  • Paint black the 22-nd square from the left in the 33-rd row from the bottom.
6 2
8 6 9 1 2 1
7
10 0
1 1000000000 1 1000000000 1 1000000000 1 1000000000 1 1000000000
4999999996