ACM刷题之HDU————Count the Trees

本文介绍了一个关于计数不同标记二叉树数量的问题,并提供了一种使用Java进行大数运算的解决方案。通过计算公式(2n)!/(n+1),解决了如何计算特定元素数量下所有可能的不同标记二叉树的数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Count the Trees

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2157    Accepted Submission(s): 1391


Problem Description
Another common social inability is known as ACM (Abnormally Compulsive Meditation). This psychological disorder is somewhat common among programmers. It can be described as the temporary (although frequent) loss of the faculty of speech when the whole power of the brain is applied to something extremely interesting or challenging. 
Juan is a very gifted programmer, and has a severe case of ACM (he even participated in an ACM world championship a few months ago). Lately, his loved ones are worried about him, because he has found a new exciting problem to exercise his intellectual powers, and he has been speechless for several weeks now. The problem is the determination of the number of different labeled binary trees that can be built using exactly n different elements. 

For example, given one element A, just one binary tree can be formed (using A as the root of the tree). With two elements, A and B, four different binary trees can be created, as shown in the figure. 

If you are able to provide a solution for this problem, Juan will be able to talk again, and his friends and family will be forever grateful. 

 

Input
The input will consist of several input cases, one per line. Each input case will be specified by the number n ( 1 ≤ n ≤ 100 ) of different elements that must be used to form the trees. A number 0 will mark the end of input and is not to be processed. 
 

Output
For each input case print the number of binary trees that can be built using the n elements, followed by a newline character. 
 

Sample Input
1 2 10 25 0
 

Sample Output
1 4 60949324800 75414671852339208296275849248768000000
 


卡特兰数+大数
不去查资料的话很难做出来,查完资料,得知公式为 (2n)!/(n+1)
用JAVA做了大数

下面是ac代码:

import java.math.BigInteger;
import java.util.Scanner;
import java.math.*;
import java.text.*;
public class Main{

	public static void main(String[] args) {
		// TODO 自动生成的方法存根
		Scanner cin=new Scanner(System.in);
		BigInteger[] count1 = new BigInteger[202];
		BigInteger[] count2 = new BigInteger[102];
		BigInteger two = new BigInteger("2");
		count1[1] = new BigInteger("1");
		
		count2[1] = new BigInteger("2");
		
		int i = 0,j,k;
		for(i=2;i<=200;i++){
			
			count1[i] = count1[i-1].multiply(BigInteger.valueOf(i));
		}
		
		for(i=2;i<=100;i++){
			j=i;
			j=j+1;
			count2[i]= count2[i-1].multiply(BigInteger.valueOf(j));
		}
		
		while(cin.hasNext())   //等同于!=EOF
		{

			i=cin.nextInt();
			if(i==0)
				break;
			System.out.println(count1[i*2].divide(count2[i]));
			
		}
	}

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值