Time Limit: 1000MS   Memory Limit: 32768KB   64bit IO Format: %I64d & %I64u

Submit Status

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

  1. The result will be very large, so you may not process it by 32-bit integers.
 

Source

求高精度的卡特兰数。

1.java代码,套公式就可以了。

  1. import java.io.*;
  2. import java.util.*;
  3. import java.math.BigInteger;
  4.  
  5. public class Main
  6. {
  7. public static void main(String args[])
  8. {
  9. BigInteger[] a = new BigInteger[101];
  10. a[0] = BigInteger.ZERO;
  11. a[1] = BigInteger.valueOf(1);
  12. for(int i = 2; i <= 100; ++i)
  13. a[i] = a[i - 1].multiply(BigInteger.valueOf(4 * i - 2)).divide(BigInteger.valueOf(i+1));
  14. Scanner in = new Scanner(System.in);
  15. int n;
  16. while(in.hasNext())
  17. {
  18. n = in.nextInt();
  19. System.out.println(a[n]);
  20. }
  21. }
  22. }

2.C++代码,kuangbin模板

  1. //h( n ) = ( ( 4*n-2 )/( n+1 )*h( n-1 ) );
  2.  
  3. #include<stdio.h>
  4.  
  5. //*******************************
  6. //打表卡特兰数
  7. //第 n个 卡特兰数存在a[n]中,a[n][0]表示长度;
  8. //注意数是倒着存的,个位是 a[n][1] 输出时注意倒过来。
  9. //*********************************
  10. int a[][];
  11. void ktl()
  12. {
  13. int i,j,yu,len;
  14. a[][]=;
  15. a[][]=;
  16. a[][]=;
  17. a[][]=;
  18. len=;
  19. for(i=;i<;i++)
  20. {
  21. yu=;
  22. for(j=;j<=len;j++)
  23. {
  24. int t=(a[i-][j])*(*i-)+yu;
  25. yu=t/;
  26. a[i][j]=t%;
  27. }
  28. while(yu)
  29. {
  30. a[i][++len]=yu%;
  31. yu/=;
  32. }
  33. for(j=len;j>=;j--)
  34. {
  35. int t=a[i][j]+yu*;
  36. a[i][j]=t/(i+);
  37. yu = t%(i+);
  38. }
  39. while(!a[i][len])
  40. {
  41. len--;
  42. }
  43. a[i][]=len;
  44. }
  45.  
  46. }
  47. int main()
  48. {
  49. ktl();
  50. int n;
  51. while(scanf("%d",&n)!=EOF)
  52. {
  53. for(int i=a[n][];i>;i--)
  54. {
  55. printf("%d",a[n][i]);
  56. }
  57. puts("");
  58. }
  59. return ;
  60. }

3.C++代码

  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6. int a[][]; //大数卡特兰数
  7. int b[]; //卡特兰数的长度
  8.  
  9. void catalan() //求卡特兰数
  10. {
  11. int i, j, len, carry, temp;
  12. a[][] = b[] = ;
  13. len = ;
  14. for(i = ; i <= ; i++)
  15. {
  16. for(j = ; j < len; j++) //乘法
  17. a[i][j] = a[i-][j]*(*(i-)+);
  18. carry = ;
  19. for(j = ; j < len; j++) //处理相乘结果
  20. {
  21. temp = a[i][j] + carry;
  22. a[i][j] = temp % ;
  23. carry = temp / ;
  24. }
  25. while(carry) //进位处理
  26. {
  27. a[i][len++] = carry % ;
  28. carry /= ;
  29. }
  30. carry = ;
  31. for(j = len-; j >= ; j--) //除法
  32. {
  33. temp = carry* + a[i][j];
  34. a[i][j] = temp/(i+);
  35. carry = temp%(i+);
  36. }
  37. while(!a[i][len-]) //高位零处理
  38. len --;
  39. b[i] = len;
  40. }
  41. }
  42.  
  43. int main()
  44. {
  45. int i, n;
  46. catalan();
  47. while(scanf("%d", &n) != EOF)
  48. {
  49. for(i = b[n]-; i>=; i--)
  50. {
  51. printf("%d", a[n][i]);
  52. }
  53. printf("\n");
  54. }
  55.  
  56. return ;
  57. }

HDU 1023 Traning Problem (2) 高精度卡特兰数的更多相关文章

  1. 1023 Train Problem II(卡特兰数)

    Problem Description As we all know the Train Problem I, the boss of the Ignatius Train Station want ...

  2. HDU 1023 Train Problem II (大数卡特兰数)

    Train Problem II Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  3. HDU 1023 Train Problem II (卡特兰数,经典)

    题意: 给出一个数字n,假设火车从1~n的顺序分别进站,求有多少种出站序列. 思路: 卡特兰数的经典例子.n<101,用递推式解决.需要使用到大数.n=100时大概有200位以下. #inclu ...

  4. HDU 1023 Train Problem II( 大数卡特兰 )

    链接:传送门 题意:裸卡特兰数,但是必须用大数做 balabala:上交高精度模板题,增加一下熟悉度 /************************************************ ...

  5. Train Problem II(卡特兰数 组合数学)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1023 Train Problem II Time Limit: 2000/1000 MS (Java/ ...

  6. hdu 1023 Train Problem II

    题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1212 Train Problem II Description As we all know the ...

  7. 【HDU 5370】 Tree Maker(卡特兰数+dp)

    Tree Maker Problem Description Tree Lover loves trees crazily. One day he invents an interesting gam ...

  8. HDU 1134 Game of Connections(卡特兰数+大数模板)

    题目代号:HDU 1134 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1134 Game of Connections Time Limit: 20 ...

  9. HDOJ/HDU 1133 Buy the Ticket(数论~卡特兰数~大数~)

    Problem Description The "Harry Potter and the Goblet of Fire" will be on show in the next ...

随机推荐

  1. html中设置锚点定位的几种常见方法(#号定位)

    在html中设置锚点定位我知道的有几种方法,在此和大家分享一下: 1.使用id定位: <a href="#1F">锚点1</a> <div id=&q ...

  2. BZOJ2818 欧拉函数

    题意:求1--n中满足gcd(x,y)的值为质数的数对(x,y)的数目 ( (x,y)和(y,x)算两个 ) sol: 设p[i]是一个质数,那么以下两个命题是等价的: 1.gcd(x,y)=1 2. ...

  3. HDU1698 Just a Hook

    Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of t ...

  4. 洛谷P2731骑马修栅栏

    题目背景 Farmer John每年有很多栅栏要修理.他总是骑着马穿过每一个栅栏并修复它破损的地方. 题目描述 John是一个与其他农民一样懒的人.他讨厌骑马,因此从来不两次经过一个栅栏.你必须编一个 ...

  5. mysql存储过程的学习

    平时在工作中写过很多存储过程,但有时候对某些存储过程还是有些困惑的,所以发一篇文章记录下. 标准存储过程写法 create procedure`myQueryTask`( IN Task_No VAR ...

  6. ubuntu 14.04 vim install youcompleteme

    sudo apt-get install vim ; sudo apt-get install vim-youcompleteme ; sudo apt-get install vim-addon-m ...

  7. 安卓系统源码编译系列(六)——单独编译内置浏览器WebView教程

    原文                   http://blog.csdn.net/zhaoxy_thu/article/details/18883015                 本文主要对从 ...

  8. jQuery返回顶部(精简版)

    jQuery返回顶部(精简版) <!DOCTYPE html><html lang="en"><head> <meta charset=& ...

  9. DEDECMS全版本gotopage变量XSS ROOTKIT 0DAY

    影响版本: DEDECMS全版本 漏洞描叙: DEDECMS后台登陆模板中的gotopage变量未效验传入数据,导致XSS漏洞. \dede\templets\login.htm 65行左右 < ...

  10. FCK编辑器漏洞总结

    1.查看编辑器版本FCKeditor/_whatsnew.html————————————————————————————————————————————————————————————— 2. Ve ...