#P1580D. Subsequence

    ID: 349 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>brute forcedivide and conquerdpgreedytrees*2900

Subsequence

No submission language available for this problem.

Description

Alice has an integer sequence aa of length nn and all elements are different. She will choose a subsequence of aa of length mm, and defines the value of a subsequence ab1,ab2,,abma_{b_1},a_{b_2},\ldots,a_{b_m} as i=1m(mabi)i=1mj=1mf(min(bi,bj),max(bi,bj)),\sum_{i = 1}^m (m \cdot a_{b_i}) - \sum_{i = 1}^m \sum_{j = 1}^m f(\min(b_i, b_j), \max(b_i, b_j)), where f(i,j)f(i, j) denotes min(ai,ai+1,,aj)\min(a_i, a_{i + 1}, \ldots, a_j).

Alice wants you to help her to maximize the value of the subsequence she choose.

A sequence ss is a subsequence of a sequence tt if ss can be obtained from tt by deletion of several (possibly, zero or all) elements.

The first line contains two integers nn and mm (1mn40001 \le m \le n \le 4000).

The second line contains nn distinct integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai<2311 \le a_i < 2^{31}).

Print the maximal value Alice can get.

Input

The first line contains two integers nn and mm (1mn40001 \le m \le n \le 4000).

The second line contains nn distinct integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai<2311 \le a_i < 2^{31}).

Output

Print the maximal value Alice can get.

Samples

Sample Input 1

6 4
15 2 18 12 13 4

Sample Output 1

100

Sample Input 2

11 5
9 3 7 1 8 12 10 20 15 18 5

Sample Output 2

176

Sample Input 3

1 1
114514

Sample Output 3

0

Sample Input 4

2 1
666 888

Sample Output 4

0

Note

In the first example, Alice can choose the subsequence [15,2,18,13][15, 2, 18, 13], which has the value 4(15+2+18+13)(15+2+2+2)(2+2+2+2)(2+2+18+12)(2+2+12+13)=1004 \cdot (15 + 2 + 18 + 13) - (15 + 2 + 2 + 2) - (2 + 2 + 2 + 2) - (2 + 2 + 18 + 12) - (2 + 2 + 12 + 13) = 100. In the second example, there are a variety of subsequences with value 176176, and one of them is [9,7,12,20,18][9, 7, 12, 20, 18].