HDU - 1134 Game of Connections(卡特兰数大数+JAVA)

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?

先画图推导一下,自己发现规律。它是卡特兰数,用dp思想做也行做也行,有一篇博客推导的很详细:https://blog.csdn.net/Dup4plz/article/details/80086994

JAVA+卡特兰数代码:

import java.io.*;
import java.math.*;
import java.util.*;
 
public class Main {
	public static void main(String[] arges){
		int n;
        Scanner cin = new Scanner (System.in);
        while(cin.hasNext()){
        	n=cin.nextInt();
        	if(n==-1)  break;
        	BigInteger a[]=new BigInteger[110];//大整数
        	int i;
        	a[0]=a[1]=new BigInteger("1");
        	for(i=2;i<=n;i++){
        		a[i]=a[i-1].multiply(BigInteger.valueOf(4*i-2));
        		a[i]=a[i].divide(BigInteger.valueOf(i+1));//卡特兰数公式,打表
        	}
           System.out.println(a[n]); 
        }
		
	}
 
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值