HDU 1023 Traning Problem (2) 高精度卡特兰数
Time Limit: 1000MS | Memory Limit: 32768KB | 64bit IO Format: %I64d & %I64u |
Description
Input
Output
Sample Input
Sample Output
Hint
- The result will be very large, so you may not process it by 32-bit integers.
Source
求高精度的卡特兰数。
1.java代码,套公式就可以了。
- import java.io.*;
- import java.util.*;
- import java.math.BigInteger;
- public class Main
- {
- public static void main(String args[])
- {
- BigInteger[] a = new BigInteger[101];
- a[0] = BigInteger.ZERO;
- a[1] = BigInteger.valueOf(1);
- for(int i = 2; i <= 100; ++i)
- a[i] = a[i - 1].multiply(BigInteger.valueOf(4 * i - 2)).divide(BigInteger.valueOf(i+1));
- Scanner in = new Scanner(System.in);
- int n;
- while(in.hasNext())
- {
- n = in.nextInt();
- System.out.println(a[n]);
- }
- }
- }
2.C++代码,kuangbin模板
- //h( n ) = ( ( 4*n-2 )/( n+1 )*h( n-1 ) );
- #include<stdio.h>
- //*******************************
- //打表卡特兰数
- //第 n个 卡特兰数存在a[n]中,a[n][0]表示长度;
- //注意数是倒着存的,个位是 a[n][1] 输出时注意倒过来。
- //*********************************
- int a[][];
- void ktl()
- {
- int i,j,yu,len;
- a[][]=;
- a[][]=;
- a[][]=;
- a[][]=;
- len=;
- for(i=;i<;i++)
- {
- yu=;
- for(j=;j<=len;j++)
- {
- int t=(a[i-][j])*(*i-)+yu;
- yu=t/;
- a[i][j]=t%;
- }
- while(yu)
- {
- a[i][++len]=yu%;
- yu/=;
- }
- for(j=len;j>=;j--)
- {
- int t=a[i][j]+yu*;
- a[i][j]=t/(i+);
- yu = t%(i+);
- }
- while(!a[i][len])
- {
- len--;
- }
- a[i][]=len;
- }
- }
- int main()
- {
- ktl();
- int n;
- while(scanf("%d",&n)!=EOF)
- {
- for(int i=a[n][];i>;i--)
- {
- printf("%d",a[n][i]);
- }
- puts("");
- }
- return ;
- }
3.C++代码
- #include <iostream>
- #include <stdio.h>
- #include <cmath>
- using namespace std;
- int a[][]; //大数卡特兰数
- int b[]; //卡特兰数的长度
- void catalan() //求卡特兰数
- {
- int i, j, len, carry, temp;
- a[][] = b[] = ;
- len = ;
- for(i = ; i <= ; i++)
- {
- for(j = ; j < len; j++) //乘法
- a[i][j] = a[i-][j]*(*(i-)+);
- carry = ;
- for(j = ; j < len; j++) //处理相乘结果
- {
- temp = a[i][j] + carry;
- a[i][j] = temp % ;
- carry = temp / ;
- }
- while(carry) //进位处理
- {
- a[i][len++] = carry % ;
- carry /= ;
- }
- carry = ;
- for(j = len-; j >= ; j--) //除法
- {
- temp = carry* + a[i][j];
- a[i][j] = temp/(i+);
- carry = temp%(i+);
- }
- while(!a[i][len-]) //高位零处理
- len --;
- b[i] = len;
- }
- }
- int main()
- {
- int i, n;
- catalan();
- while(scanf("%d", &n) != EOF)
- {
- for(i = b[n]-; i>=; i--)
- {
- printf("%d", a[n][i]);
- }
- printf("\n");
- }
- return ;
- }
HDU 1023 Traning Problem (2) 高精度卡特兰数的更多相关文章
- 1023 Train Problem II(卡特兰数)
Problem Description As we all know the Train Problem I, the boss of the Ignatius Train Station want ...
- HDU 1023 Train Problem II (大数卡特兰数)
Train Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- HDU 1023 Train Problem II (卡特兰数,经典)
题意: 给出一个数字n,假设火车从1~n的顺序分别进站,求有多少种出站序列. 思路: 卡特兰数的经典例子.n<101,用递推式解决.需要使用到大数.n=100时大概有200位以下. #inclu ...
- HDU 1023 Train Problem II( 大数卡特兰 )
链接:传送门 题意:裸卡特兰数,但是必须用大数做 balabala:上交高精度模板题,增加一下熟悉度 /************************************************ ...
- Train Problem II(卡特兰数 组合数学)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1023 Train Problem II Time Limit: 2000/1000 MS (Java/ ...
- hdu 1023 Train Problem II
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1212 Train Problem II Description As we all know the ...
- 【HDU 5370】 Tree Maker(卡特兰数+dp)
Tree Maker Problem Description Tree Lover loves trees crazily. One day he invents an interesting gam ...
- HDU 1134 Game of Connections(卡特兰数+大数模板)
题目代号:HDU 1134 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1134 Game of Connections Time Limit: 20 ...
- HDOJ/HDU 1133 Buy the Ticket(数论~卡特兰数~大数~)
Problem Description The "Harry Potter and the Goblet of Fire" will be on show in the next ...
随机推荐
- html中设置锚点定位的几种常见方法(#号定位)
在html中设置锚点定位我知道的有几种方法,在此和大家分享一下: 1.使用id定位: <a href="#1F">锚点1</a> <div id=&q ...
- BZOJ2818 欧拉函数
题意:求1--n中满足gcd(x,y)的值为质数的数对(x,y)的数目 ( (x,y)和(y,x)算两个 ) sol: 设p[i]是一个质数,那么以下两个命题是等价的: 1.gcd(x,y)=1 2. ...
- HDU1698 Just a Hook
Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of t ...
- 洛谷P2731骑马修栅栏
题目背景 Farmer John每年有很多栅栏要修理.他总是骑着马穿过每一个栅栏并修复它破损的地方. 题目描述 John是一个与其他农民一样懒的人.他讨厌骑马,因此从来不两次经过一个栅栏.你必须编一个 ...
- mysql存储过程的学习
平时在工作中写过很多存储过程,但有时候对某些存储过程还是有些困惑的,所以发一篇文章记录下. 标准存储过程写法 create procedure`myQueryTask`( IN Task_No VAR ...
- ubuntu 14.04 vim install youcompleteme
sudo apt-get install vim ; sudo apt-get install vim-youcompleteme ; sudo apt-get install vim-addon-m ...
- 安卓系统源码编译系列(六)——单独编译内置浏览器WebView教程
原文 http://blog.csdn.net/zhaoxy_thu/article/details/18883015 本文主要对从 ...
- jQuery返回顶部(精简版)
jQuery返回顶部(精简版) <!DOCTYPE html><html lang="en"><head> <meta charset=& ...
- DEDECMS全版本gotopage变量XSS ROOTKIT 0DAY
影响版本: DEDECMS全版本 漏洞描叙: DEDECMS后台登陆模板中的gotopage变量未效验传入数据,导致XSS漏洞. \dede\templets\login.htm 65行左右 < ...
- FCK编辑器漏洞总结
1.查看编辑器版本FCKeditor/_whatsnew.html————————————————————————————————————————————————————————————— 2. Ve ...