10140_CowPedigrees

2022-5-16 18:16| 发布者: Hocassian| 查看: 73| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-3-89504593324499-Problem List-采集的数据-后羿采集器.html

Pro.ID

10140

Title

Cow Pedigrees

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=10140

AC

16

Submit

79

Ratio

20.25%

时间&空间限制

  • Time Limit: 1000/500 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

    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.

    输入

    Multiple test cases, each test case consist of two space-separated integers, N and K , in one line.

    输出

    Description

    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.

    Input

    Multiple test cases, each test case consist of two space-separated integers, N and K , in one line.

    Output

    For each case , output one line : one single integer number representing the number of possible pedigrees MODULO 9901.

    Sample Input

    5 3

    Sample Output

    2

    Hint

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

    @                   @
    / \                 / \
    @   @      and      @   @
    / \                     / \
    @   @                   @   @

    Source

    样例输入

    5 3

    样例输出

    2

    提示

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

    @                   @
    / \                 / \
    @   @      and      @   @
    / \                     / \
    @   @                   @   @


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部