#P16482. [GKS 2014 #B] Password Attacker

    ID: 16467 Type: RemoteJudge 1000ms 1024MiB Tried: 0 Accepted: 0 Difficulty: 3 Uploaded By: Tags>动态规划 DP2014Google Kick Start

[GKS 2014 #B] Password Attacker

题目描述

Passwords are widely used in our lives: for ATMs, online forum logins, mobile device unlock and door access. Everyone cares about password security. However, attackers always find ways to steal our passwords. Here is one possible situation:

Assume that Eve, the attacker, wants to steal a password from the victim Alice. Eve cleans up the keyboard beforehand. After Alice types the password and leaves, Eve collects the fingerprints on the keyboard. Now she knows which keys are used in the password. However, Eve won't know how many times each key has been pressed or the order of the keystroke sequence.

To simplify the problem, let's assume that Eve finds Alice's fingerprints only occurs on MM keys. And she knows, by another method, that Alice's password contains NN characters. Furthermore, every keystroke on the keyboard only generates a single, unique character. Also, Alice won't press other irrelevant keys like 'left', 'home', 'backspace' and etc.

Here's an example. Assume that Eve finds Alice's fingerprints on M=3M=3 key '3', '7' and '5', and she knows that Alice's password is N=4N=4-digit in length. So all the following passwords are possible: 35773577, 35573557, 73537353 and 57355735. (And, in fact, there are 3232 more possible passwords.)

However, these passwords are not possible:

Password Example Reason
1357 There is no fingerprint on key '1'
3355 There is fingerprint on key '7', so '7' must occur at least once.
357 Eve knows the password must be a 4-digit number.

With the information, please count that how many possible passwords satisfy the statements above. Since the result could be large, please output the answer modulo 109+710^9+7.

输入格式

The first line of the input gives the number of test cases, TT. For the next TT lines, each contains two space-separated numbers MM and NN, indicating a test case.

输出格式

For each test case, output one line containing "Case #x: y", where xx is the test case number (starting from 11) and yy is the total number of possible passwords modulo 109+710^9+7.

4
1 1
3 4
5 5
15 15
Case #1: 1
Case #2: 36
Case #3: 120
Case #4: 674358851

提示

Limits

Small dataset (Test set 1 - Visible)

T=15T = 15

1MN71 \le M \le N \le 7

Large dataset (Test set 2 - Hidden)

T=100T = 100

1MN1001 \le M \le N \le 100