zoukankan      html  css  js  c++  java
  • 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
     
  • 相关阅读:
    Python基础知识大总结
    Python基础教程第一章 python基础知识
    XDUOJ 1000-1002题解
    C# PDF格式 下载
    C# 文件(图片)下载
    C# DataTable转List
    C# Excel导入与导出
    C# 文件压缩与解压
    C# 文件流 导入 导出
    C# lambda表达式
  • 原文地址:https://www.cnblogs.com/chenhuan001/p/3132708.html
Copyright © 2011-2022 走看看