|
||||||||||
DP?Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 128000/128000 K (Java/Others)Total Submission(s): 5099 Accepted Submission(s): 1534 Problem Description Figure 1 shows the Yang Hui Triangle. We number the row from top to bottom 0,1,2,¡and the column from left to right 0,1,2,¡.If using C(n,k) represents the number of row n, column k. The Yang Hui Triangle has a regular pattern as follows. C(n,0)=C(n,n)=1 (n ¡Ý 0) C(n,k)=C(n-1,k-1)+C(n-1,k) (0<k<n) Write a program that calculates the minimum sum of numbers passed on a route that starts at the top and ends at row n, column k. Each step can go either straight down or diagonally down to the right like figure 2. As the answer may be very large, you only need to output the answer mod p which is a prime. Input Input to the problem will consists of series of up to 100000 data sets. For each data there is a line contains three integers n, k(0<=k<=n<10^9) p(p<10^4 and p is a prime) . Input is terminated by end-of-file. Output For every test case, you should output "Case #C: " first, where C indicates the case number and starts at 1.Then output the minimum sum mod p. Sample Input
Sample Output
Author phyxnj@UESTC Source | ||||||||||
|