#Lutece0369. Jubilant Counting

Jubilant Counting

Migrated from Lutece 369 Jubilant Counting

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

Given a text s[1n]s[1\cdots n] of length nn, we create its suffix array by taking all its suffixes: s[1n],s[2n],,s[nn]s[1\cdots n], s[2\cdots n],\cdots, s[n\cdots n] and sorting them lexicographically. As a result we get a sorted list of suffixes: $s[p_1\cdots n], s[p_2\cdots n],\cdots , s[p_n\cdots n]$ and call the sequence p1,p2,,pnp_1,p_2,\cdots ,p_n the suffix array of s[1n]s[1\cdots n].

For example, if s=s = abbaabab, the sorted list of all suffixes becomes: aabab, ab, abab, abbaabab, b, baabab, bab, bbaabab and the suffix array is 44, 77, 55, 11, 88, 33, 66, 22.

It turns out that it is possilble to construct this array in linear time. Your task will be completely different, though: given p1,p2,p3pnp_1, p_2, p_3\cdots p_n, you should tell me how many possible sequences lead to this suffix array using at most m different letters.

Input

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

Every test case begins with 22 integer nn, mm(1n,m1000001\leq n, m\leq 100000) indicating the length of the sequence and the letters you can use. Then the next line contains n different numbers from 11 to n which form a permutation indicating the suffix array.

Output

For every test case, you should output Case #k: first, where k indicates the case number and starts at 11. Then output an integer indicating the answer to this text case. As the answer may be very large, you only need to output the remainder when it divides 10000031000003 which is a prime.

Samples

2

1 26
1

2 26
2 1
Case #1: 26
Case #2: 351

Resources

The 9th UESTC Programming Contest Preliminary