#Lutece0363. Determine

Determine

Migrated from Lutece 363 Determine

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

There is a strange pipe, which has two entrances, conveniently named the left entrance and the right entrance. You have some weighted balls, which are numbered from 11 to NN. Now, you want to push your balls into the strange pipe, ball 11 first, and then ball 22, \cdots , and finally ball NN. When you push a ball in through an entrance, it must heavier than the balls pushed in before through this entrance. You are clever enough to determine which ones you can and should push in, so could you tell me the maximum number of balls you can successfully push into the strange pipe?

title

Input

The first line of the input is an integer TT (T50T\leq 50), which stands for the number of test cases you need to solve.

Every test case begins with an integer NN (N1000N\leq 1000), the number of balls. And then NN integers follow, specify the weight of ball 11 to ball NN. Weight is nonnegative and less than 10910^9.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and starts at 11. Then output the answer. See sample for more details.

Samples

4
3
1 2 3
3
2 3 1
3
3 2 1
3
1 1 1
Case #1: 3
Case #2: 3
Case #3: 2
Case #4: 2

Note

You can choose to push a ball in or not even if you can push the ball in successfully.

Resources

The 9th UESTC Programming Contest Preliminary