#Lutece1217. The Battle of Chibi
The Battle of Chibi
Migrated from Lutece 1217 The Battle of Chibi
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
Cao Cao made up a big army and was going to invade the whole South China. Yu Zhou was worried about it. He thought the only way to beat Cao Cao is to have a spy in Cao Cao's army. But all generals and soldiers of Cao Cao were loyal, it's impossible to convince any of them to betray Cao Cao.
So there is only one way left for Yu Zhou, send someone to fake surrender Cao Cao. Gai Huang was selected for this important mission. However, Cao Cao was not easy to believe others, so Gai Huang must leak some important information to Cao Cao before surrendering.
Yu Zhou discussed with Gai Huang and worked out information to be leaked, in happening order. Each of the information was estimated to has value in Cao Cao's opinion.
Actually, if you leak information with strict increasing value could accelerate making Cao Cao believe you. So Gai Huang decided to leak exact information with strict increasing value in happening order. In other words, Gai Huang will not change the order of the information and just select of them. Find out how many ways Gai Huang could do this.
Input
The first line of the input gives the number of test cases, (). test cases follow.
Each test case begins with two numbers () and (), indicating the number of information and number of information Gai Huang will select. Then numbers in a line, the number () indicates the value in Cao Cao's opinion of the information in happening order.
Output
For each test case, output one line containing Case #x: y
, where is the test case number (starting from ) and is the ways Gai Huang can select the information.
The result is too large, and you need to output the result mod by ().
Samples
2
3 2
1 2 3
3 2
3 2 1
Case #1: 3
Case #2: 0
Note
In the first cases, Gai Huang need to leak information out of . He could leak any information as all the information value are in increasing order. In the second cases, Gai Huang has no choice as selecting any information is not in increasing order.
Resources
The 2015 China Collegiate Programming Contest