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
     
  • 相关阅读:
    admob 广告增加
    流量统计
    施乐 著名的帕洛阿尔托研究中心
    android Launcher
    系统集成
    jad 批量反编译class文件
    eclipse classes 文件不见
    悬浮窗不可触摸
    ios 相关
    android 屏幕切换
  • 原文地址:https://www.cnblogs.com/chenhuan001/p/3132708.html
Copyright © 2011-2022 走看看