Colorful ChainProblem code: COLCHAIN |
All submissions for this problem are available.
A chain is a series of connected links. David has been presented a chain for his birthday consisting of N links and would like to color each of the links into one of M colors. He would like the coloring to be pretty uniform, so that no color is used too often or too seldom. Finally, David came with the following restriction: he wants to color the links in such a way that every color is used at least once in every M+1 consecutive links.
Two colorings are considered different if there exists at least one i between 1 and N such that link i is colored differently in these colorings. (The links are numbered, and the chain can not be rotated.) How many ways are there for David to color the chain?
Input
The first line of the input file contains one integer T -- the number of test cases (no more than 10). Each of the next T lines contains two integers N and M -- the length of the chain presented to David and the number of colors (1 ≤ M < N ≤ 105).
Output
For each test case output the number of ways for David to color the chain modulo 1 000 000 007 (109 + 7).
Example
Input: 3 2 1 4 2 6 3 Output: 1 10 132
| Date: | 2011-10-02 |
| Time limit: | 1s |
| Source limit: | 50000B |
| Languages: | All |
Comments
Loading Comments...
SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:
Loading Submissions...RECENT ACTIVITY FOR THIS PROBLEM:
Loading Recent Activity...HELP
Program should read from standard input and write to standard output.
After you submit a solution you can see your results by clicking on the [My Submissions] tab on the problem page. Below are the possible results:
- Accepted
Your program ran successfully and gave a correct answer. If there is a score for the problem, this will be displayed in parenthesis next to the checkmark. - Time Limit Exceeded
Your program was compiled successfully, but it didn't stop before time limit. Try optimizing your approach. - Wrong Answer
Your program compiled and ran succesfully but the output did not match the expected output. - Runtime Error
Your code compiled and ran but encountered an error. The most common reasons are using too much memory or dividing by zero. For the specific error codes see the help section. - Compilation Error
Your code was unable to compile. When you see this icon, click on it for more information.
If you are still having problems, see a sample solution here.
