Train Problem II
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 8534 Accepted Submission(s): 4563
Problem Description
As we all know the Train Problem I, the boss of the Ignatius Train Station want to know if all the trains come in strict-increasing order, how many orders that all the trains can get out of the railway.
Input
The input contains several test cases. Each test cases consists of a number N(1<=N<=100). The input is terminated by the end of file.
Output
For each test case, you should output how many ways that all the trains can get out of the railway.
Sample Input
1 2 3 10
Sample Output
1 2 5 16796HintThe result will be very large, so you may not process it by 32-bit integers.
Author
Ignatius.L
本题主要为卡特兰数的应用,若想具体了解可以翻翻一些大牛的博客:
http://www.cnblogs.com/kuangbin/archive/2012/03/21/2410519.html
http://blog.youkuaiyun.com/niushuai666/article/details/6936859
此处我就贴出自己的C++代码,此代码也参考了他人的,自己稍做了改变,其主要涉及的还是大数的乘除法: