hdu1100

#include <iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>

using namespace std;

int n,op[40],sum[40];
void init()
{
    memset(op,0,sizeof(op));
    op[1]=sum[1]=1;op[0]=1;sum[0]=0;
    for(int i=2;i<20;i++)
    {
        for(int j=0;j<i;j++)
            op[i]+=op[i-1-j]*op[j];
        sum[i]=sum[i-1]+op[i];
    }
}
void dfs(int n)
{
    if(n==0)
        return ;
    int num=lower_bound(sum,sum+19,n)-sum;
    num--;
    n-=sum[num];
    int nl=0;
    while(n>op[nl]*op[num-nl])
    {
         n-=op[nl]*op[num-nl];
         nl++;
    }
    int dt=0,lp=1;
    if(nl)
    {
        dt=1+(n-1)/op[num-nl];
        n-=(dt-1)*(op[num-nl]);
        printf("(");
        dfs(dt+sum[nl-1]);
        printf(")");
    }
    printf("X");
    if(num-nl)
    {
        printf("(");
        dfs(n+sum[num-nl-1]);
        printf(")");
    }
}
int main()
{
    init();
    while(cin>>n&&n)
    {
    dfs(n);printf("\n");
    }
    return 0;
}
We can number binary trees using the following scheme:
The empty tree is numbered 0.
The single-node tree is numbered 1.
All binary trees having m nodes have numbers less than all those having m+1 nodes.
Any binary tree having m nodes with left and right subtrees L and R is numbered n such that all trees having m nodes numbered > n have either
Left subtrees numbered higher than L, or
A left subtree = L and a right subtree numbered higher than R.

The first 10 binary trees and tree number 20 in this sequence are shown below:



Your job for this problem is to output a binary tree when given its order number.

此题刚开始看的时候以为是个树,其实这是一个数学问题,此题的递推规则其实和卡特兰数十分相似。

每次先对n计算有多少nodes,然后减掉多余的求出在这么多nodes的条件下的排列序号,此时再根据卡特兰数的递推公式可以轻松的求出左右子数的个数是多少,然后便是求解左树子排列序号以及右树子的排列序号,从而可以使用dfs完美求解

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值