当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5542:The Battle of Chibi

题目描述
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 $N$ information to be leaked, in happening order. Each of the information was estimated to has $a_{i}$ 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 $M$ information with strict increasing value in happening order. In other words, Gai Huang will not change the order of the $N$ information and just select $M$ of them. Find out how many ways Gai Huang could do this.
输入解释
The first line of the input gives the number of test cases, $T(1≤100)$. $T$ test cases follow.

Each test case begins with two numbers $N(1≤N≤10^3)$ and $M(1≤M≤N)$, indicating the number of information and number of information Gai Huang will select. Then $N$ numbers in a line, the $i_{th}$ number $a_{i}(1≤a_{i}≤10^{9})$ indicates the value in Cao Cao's opinion of the $i_{th}$ information in happening order.
输出解释
For each test case, output one line containing Case #x: y, where $x$ is the test case number (starting from 1) and $y$ is the ways Gai Huang can select the information.

The result is too large, and you need to output the result mod by $1000000007(10^{9}+7)$.
输入样例
2
3 2
1 2 3
3 2
3 2 1
输出样例
Case #1: 3
Case #2: 0
提示
In the first cases, Gai Huang need to leak 2 information out of 3. He could leak any 2 information as all the information value are in increasing order. 
In the second cases, Gai Huang has no choice as selecting any 2 information is not in increasing order.
来自杭电HDUOJ的附加信息
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5542

最后修改于 2020-10-25T23:23:37+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
6000/4000MS(Java/Others) 65535/65535K(Java/Others)