首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【HDU】1131 - Count the Trees(组合数学 - 卡特兰数 & java)

【HDU】1131 - Count the Trees(组合数学 - 卡特兰数 & java)

作者头像
FishWang
发布2025-08-27 11:25:08
发布2025-08-27 11:25:08
16500
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

Count the Trees

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

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

代码语言:javascript
代码运行次数:0
运行
复制
   1
2
10
25
0

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
   1
4
60949324800
75414671852339208296275849248768000000

Source

UVA

问有n个点可以形成多少种二叉树。

首先要看出来是卡特兰数,再乘一个n的全排列。

先打表。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
import java.math.BigDecimal;
import java.util.Scanner;

public class Main
{
	public static void main(String[] args)
	{
	    BigDecimal f[] = new BigDecimal [111];
	    BigDecimal fac[] = new BigDecimal [111];
	    BigDecimal four = new BigDecimal(4);
	    BigDecimal one = new BigDecimal(1);
	    BigDecimal two = new BigDecimal(2);
	    fac[0] = new BigDecimal(1);
	    for (int i = 1 ; i <= 100 ; i++)
	    {
	        fac[i] = fac[i-1].multiply(BigDecimal.valueOf(i));
	    }
	    f[0] = new BigDecimal(1);
	    for (int i = 1 ; i <= 100 ; i++)
	    {
	        BigDecimal t = new BigDecimal(i);  
            f[i] = f[i-1].multiply(four.multiply(t).subtract(two)).divide(t.add(one));
	    }
	    Scanner sc = new Scanner(System.in);
	    while (sc.hasNext())
	    {
	        int n = sc.nextInt();
	        if (n == 0)
	            break;
	        System.out.println(f[n].multiply(fac[n]));
	    }
	}
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Count the Trees
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档