#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
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 .
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 as the height of the last soldier in group . Then for , there should be .
You give your division a score, which is calculated as , and , if there are groups in total. Note that can equal to .
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 () , indicating the number of test cases.
For each test case, first line has two numbers and (), as described above.
Then comes a single line with numbers, from to , they are the height of each soldier in the line, from left to right. ()
Output
For test case , 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