#Lutece0829. Oh My Holy FFF

Oh My Holy FFF

Migrated from Lutece 829 Oh My Holy FFF

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

NN soldiers from the famous "FFF army'' is standing in a line, from left to right.

 o   o   o   o   o   o   o   o   o   o   o   o   o   o   o   o   o   o
/F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\ /F\
/ \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \

You, as the captain of FFF, want to divide them into smaller groups, but each group should still be continous in the original line. Like this:

 o   o   o  |  o   o   o   o  |  o   o   o   o   o   o  |  o   o   o   o   o 
/F\ /F\ /F\ | /F\ /F\ /F\ /F\ | /F\ /F\ /F\ /F\ /F\ /F\ | /F\ /F\ /F\ /F\ /F\
/ \ / \ / \ | / \ / \ / \ / \ | / \ / \ / \ / \ / \ / \ | / \ / \ / \ / \ / \

In your opinion, the number of soldiers in each group should be no more than LL.

Meanwhile, you want your division be holy. Since the soldier may have different heights, you decide that for each group except the first one, its last soldier(which is the rightmost one) should be strictly taller than the previous group's last soldier. That is, if we set bib_i as the height of the last soldier in group ii. Then for i2i\geq 2, there should be bi>bi1b_i >b_{i-1}.

You give your division a score, which is calculated as (bk2bk1)\sum{(b_k^2-b_{k-1})}, b0=0b_0=0 and 1kM1\leq k\leq M, if there are MM groups in total. Note that MM can equal to 11.

Given the heights of all soldiers, please tell us the best score you can get, or declare the division as impossible.

Input

The first line has a number TT (T10T\leq 10) , indicating the number of test cases.

For each test case, first line has two numbers NN and LL (1LN1051 \leq L \leq N \leq 10^5), as described above.

Then comes a single line with NN numbers, from H1H_1 to HnH_n, they are the height of each soldier in the line, from left to right. (1Hi1051 \leq H_i \leq 10^5)

Output

For test case XX, output Case #X: first, then output the best score.

Samples

2
5 2
1 4 3 2 5
5 2
5 4 3 2 1
Case #1: 31
Case #2: No solution

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest