博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1133 Buy the Ticket (大数+递推)
阅读量:6915 次
发布时间:2019-06-27

本文共 2726 字,大约阅读时间需要 9 分钟。

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:            
 

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

1 //0 MS    324 KB    Visual C++ 2 /* 3  4     递推公式: 5         ans[n][m]=(n+m)!*(n-m+1)/(n+1); 6 */  7 #include
8 #include
9 #define N 1000010 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:\n",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("\n"); 57 }58 return 0;59 }

 

转载于:https://www.cnblogs.com/GO-NO-1/p/3693762.html

你可能感兴趣的文章
javaScript显示和隐藏(display属性)
查看>>
采用管道进行通讯的例子
查看>>
ubuntu添加一个源
查看>>
Oracle动态采样学习
查看>>
安全跟踪升级
查看>>
JavaScript从作用域到闭包
查看>>
ubuntu mldonkey 设置
查看>>
java 空指针异常造成的原因有哪些
查看>>
linux 的软连接与硬连接
查看>>
解决vmware克隆虚拟机网卡无法启动
查看>>
Linux CentOS 安装Java SDK
查看>>
crontab
查看>>
HTTP协议详解
查看>>
自己写token类(无视jwt)
查看>>
NIOS2随笔——中断控制
查看>>
VNX VMX and delete luns
查看>>
Saltstack部署
查看>>
「人物特写」工程院院士谭建荣:马云不是制造业的杀手,工业机器人也不是救命良药...
查看>>
PHP添加zip&&curl扩展
查看>>
Ubuntn16 部署shellinabox--web shell工具
查看>>