程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVa 10007 & hdu 1131 Count the Trees (卡特蘭數)

UVa 10007 & hdu 1131 Count the Trees (卡特蘭數)

編輯:C++入門知識

UVa 10007 & hdu 1131 Count the Trees (卡特蘭數)


Count the Trees Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu SubmitStatus

Description

Download as PDF


Count the Trees

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 exactlyn different elements.

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


\begin{picture}(400,90)(50,0)\put(115,62){A}\put(75,10){B}\put(120,60){\vecto......}}\put(365,62){B}\put(405,10){A}\put(370,60){\vector(1,-1){40}}\end{picture}

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 numbern ( 1 ≤ n ≤ 300 ) of different elements that must be used to form the trees. A number0 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


題意:給你n個點,問能夠構成多少種不同的樹。


解析:卡特蘭數。




AC代碼:

#include
#include
#define SIZE 200
#define MAXN 302
#define BASE 10000

using namespace std;

int Canlan[MAXN][SIZE];
int temp[SIZE];

void A(int n)
{
    memcpy(temp, Canlan[n], sizeof(temp));
    int  e = 0;
    for(int fac = n; fac>0; --fac)
    {
        for(int i = SIZE-1, remain = 0; i>=0; --i)
        {
            e = temp[i] * fac + remain;
            temp[i] = e % BASE;
            remain = e / BASE;
        }
    }
    memcpy(Canlan[n], temp, sizeof(int)*SIZE);
}

void multiply(int elem)
{
    for(int i=SIZE-1, remain = 0; i >= 0; --i)
    {
        remain = temp[i] * elem + remain;
        temp[i] = remain % BASE;
        remain = remain / BASE;
    }
    return;
}

void divide(int elem)
{
    int i;
    for(i=0; i


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved