hdu

来源:互联网 发布:黑莓 转制软件 编辑:程序博客网 时间:2024/06/06 00:12

This is a small but ancient game. You are supposed to write down the numbers 1, 2, 3, . . . , 2n - 1, 2n consecutively in clockwise order on the ground to form a circle, and then, to draw some straight line segments to connect them into number pairs. Every number must be connected to exactly one another. 
And, no two segments are allowed to intersect. 
It's still a simple game, isn't it? But after you've written down the 2n numbers, can you tell me in how many different ways can you connect the numbers into pairs? Life is harder, right?
Input
Each line of the input file will be a single positive number n, except the last line, which is a number -1. 
You may assume that 1 <= n <= 100.
Output
For each n, print in a single line the number of ways to connect the 2n numbers into pairs.
Sample Input
23-1
Sample Output
25

卡特兰数的模板题,可以用c++大数算法,也可以用java的大数类

c++代码:

#include<iostream>#include<string>#include<cstdio>#include<algorithm>#include<cmath>#include<iomanip>#include<queue>#include<cstring>#include<map>using namespace std;typedef long long ll;#define M 105int a[101][101];int b[101];void catalan(){    int i,j,x,len;    a[1][0]=b[1]=len=1;    for(i=2;i<101;i++)    {        for(j=0,x=0;j<len;j++)        {            a[i][j]=a[i-1][j]*(4*i-2)+x;            x=a[i][j]/10;            a[i][j]%=10;        }        while(x>0)        {            a[i][len++]=x%10;            x/=10;        }        for(j=len-1,x=0;j>=0;j--)        {            a[i][j]=a[i][j]+10*x;            x=a[i][j]%(i+1);            a[i][j]/=(i+1);        }        while(a[i][len-1]==0&&len>0)            len--;        b[i]=len;    }}int main(){    catalan();    int n;    while(scanf("%d",&n)!=EOF)    {        if(n==-1)            break;        for(int i=b[n]-1;i>=0;i--)            printf("%d",a[n][i]);            printf("\n");    }    return 0;}


java代码:

import java.math.BigInteger;import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner input=new Scanner(System.in);int i,n;BigInteger h[]=new BigInteger[105];h[0]=BigInteger.ONE;for(i=1;i<=100;i++){h[i]=h[i-1].multiply(BigInteger.valueOf(4*i-2)).divide(BigInteger.valueOf(i+1));}while(input.hasNext()){n=input.nextInt();if(n==-1)break;System.out.println(h[n]);}input.close();}}




原创粉丝点击