hdu1023(大数+递推)

递推无疑

        g[1][1]=1;
    for(int i=2;i<=100;i++)
    {
        int tmp=1;
        for(int j = 1 ; j < i ; j++)
        {
            tmp += g[i-1][j];
            g[i][j] = tmp;
        }
        g[i][i]=g[i][i-1];
    } 
递推方程

Train Problem II

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


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 16796
Hint
The result will be very large, so you may not process it by 32-bit integers.
 
Author
Ignatius.L
 
原文地址:https://www.cnblogs.com/chenhuan001/p/3132708.html