#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 of length , we create its suffix array by taking all its suffixes: 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 the suffix array of .
For example, if abbaabab
, the sorted list of all suffixes becomes: aabab
, ab
, abab
, abbaabab
, b
, baabab
, bab
, bbaabab
and the suffix array is , , , , , , , .
It turns out that it is possilble to construct this array in linear time. Your task will be completely different, though: given , 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 (), which stands for the number of test cases you need to solve.
Every test case begins with integer , () indicating the length of the sequence and the letters you can use. Then the next line contains n different numbers from 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 . 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 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