hdu 1133 Buy the Ticket (大数+递推)

Buy the Ticket

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4185    Accepted Submission(s): 1759


Problem Description
The "Harry Potter and the Goblet of Fire" will be on show in the next few days. As a crazy fan of Harry Potter, you will go to the cinema and have the first sight, won’t you?

Suppose the cinema only has one ticket-office and the price for per-ticket is 50 dollars. The queue for buying the tickets is consisted of m + n persons (m persons each only has the 50-dollar bill and n persons each only has the 100-dollar bill).

Now the problem for you is to calculate the number of different ways of the queue that the buying process won't be stopped from the first person till the last person. 
Note: initially the ticket-office has no money. 

The buying process will be stopped on the occasion that the ticket-office has no 50-dollar bill but the first person of the queue only has the 100-dollar bill.
 
Input
The input file contains several test cases. Each test case is made up of two integer numbers: m and n. It is terminated by m = n = 0. Otherwise, m, n <=100.
 
Output
For each test case, first print the test number (counting from 1) in one line, then output the number of different ways in another line.
 
Sample Input
3 0
3 1
3 3
0 0
 
Sample Output
Test #1:
6
Test #2:
18
Test #3:
180
 
Author
HUANG, Ninghai
 
Recommend
Eddy   |   We have carefully selected several similar problems for you:  1715 1207 1865 1284 1753 
 

 简单题。推出递推公式就差不多了。

 1 //0 MS    324 KB    Visual C++
 2 /*
 3 
 4     递推公式:
 5         ans[n][m]=(n+m)!*(n-m+1)/(n+1);
 6 */ 
 7 #include<stdio.h>
 8 #include<string.h>
 9 #define N 10000
10 int f[205][105]={0};
11 void mul(int a[],int n)
12 {
13     int temp=0;
14     for(int i=0;i<105;i++){
15         temp+=n*a[i];
16         a[i]=temp%N;
17         temp/=N;
18     }
19 }
20 void div(int a[],int n)
21 {
22     int temp=0;
23     for(int i=104;i>=0;i--){
24         temp=temp*N+a[i];
25         a[i]=temp/n;
26         temp%=n;
27     }
28 }
29 void init()
30 {
31     f[0][0]=1;
32     for(int i=1;i<=200;i++){
33         memcpy(f[i],f[i-1],105*sizeof(int));
34         mul(f[i],i);
35     }
36 }
37 int main(void)
38 {
39     int n,m,k=1;
40     init();
41     while(scanf("%d%d",&n,&m),n+m)
42     {
43         printf("Test #%d:
",k++);
44         if(m>n){
45             puts("0");continue;
46         }
47         int ans[105];
48         memcpy(ans,f[n+m],105*sizeof(int));
49         mul(ans,n-m+1);
50         div(ans,n+1);
51         
52         int i=104;
53         for(;!ans[i];i--);
54         printf("%d",ans[i]);
55         while(i--) printf("%04d",ans[i]);
56         printf("
");                          
57     }
58     return 0;
59 }
原文地址:https://www.cnblogs.com/GO-NO-1/p/3693762.html