zoukankan      html  css  js  c++  java
  • 2.3.2 Cow Pedigrees

    Cow Pedigrees

    Silviu Ganceanu -- 2003

    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      @   @
            /                      / 
           @   @                   @   @
    
    /*
    ID: makeeca1
    PROG: nocows
    LANG: C++
    */
    #include <cstdio>
    int s[100][200];
    int main()
    {
        int k, n;
        freopen("nocows.in", "r", stdin);
        freopen("nocows.out", "w", stdout);
        scanf("%d%d", &n, &k);
        for (int j = 1; j <= k; ++j)s[j][1] = 1;
        for (int j = 1; j <= k; ++j)
            for (int i = 3; i <= n; i += 2)
                for (int k = 1; k <= i-2; k += 2)
                    s[j][i] = (s[j][i]+s[j-1][k]*s[j-1][i-k-1])%9901;
        printf("%d
    ", (s[k][n]-s[k-1][n]+9901)%9901);
    }
  • 相关阅读:
    大数加法、乘法实现的简单版本
    hdu 4027 Can you answer these queries?
    zoj 1610 Count the Colors
    2018 徐州赛区网赛 G. Trace
    1495 中国好区间 尺取法
    LA 3938 动态最大连续区间 线段树
    51nod 1275 连续子段的差异
    caioj 1172 poj 2823 单调队列过渡题
    数据结构和算法题
    一个通用分页类
  • 原文地址:https://www.cnblogs.com/makeecat/p/3274581.html
Copyright © 2011-2022 走看看