10232 - 奶牛家谱

农民约翰准备购买一群新奶牛。 在这个新的奶牛群中, 每一个母亲奶牛都生两小奶牛。这些奶牛间的关系可以用二叉树来表示。这些二叉树总共有N个节点(3 <= N < 200)。这些二叉树有如下性质: 每一个节点的度是0或2。度是这个节点的孩子的数目。

树的高度等于K(1 < K < 100)。高度是从根到任何叶子的最长的路径上的节点的数目; 叶子是指没有孩子的节点。

有多少不同的家谱结构? 如果一个家谱的树结构不同于另一个的, 那么这两个家谱就是不同的。输出可能的家谱树的个数除以9901的余数。

输入

第1行: 两个空格分开的整数, N和K。

输出

第 1 行: 一个整数,表示可能的家谱树的个数除以9901的余数。

样例

输入

5 3

输出

2

提示

Farmer John is considering purchasing a new herd of cows. In this new herd, each mother cow gives birth to two children. The relationships among the cows can easily be represented by one or more binary trees with a total of N (3 <= N < 200) nodes. The trees have these properties:

The degree of each node is 0 or 2. The degree is the count of the node's immediate children.

The height of the tree is equal to K (1 < K <100). The height is the number of nodes on the longest path from the root to any leaf; a leaf is a node with no children.

How many different possible pedigree structures are there? A pedigree is different if its tree structure differs from that of another pedigree. Output the remainder when the total number of different possible pedigrees is divided by 9901.

PROGRAM NAME: nocows INPUT FORMAT Line 1: Two space-separated integers, N and K. SAMPLE INPUT (file nocows.in) 5 3

OUTPUT FORMAT Line 1: One single integer number representing the number of possible pedigrees MODULO 9901. SAMPLE OUTPUT (file nocows.out) 2

OUTPUT DETAILS:

Two possible pedigrees have 5 nodes and height equal to 3:

       @                   @      
      / \                 / \
     @   @      and      @   @
    / \                     / \
   @   @                   @   @
时间限制 1 秒
内存限制 128 MB
讨论 统计
上一题 下一题