Advertisement
Guest User

Untitled

a guest
May 20th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. 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:
  2.  
  3. The degree of each node is 0 or 2. The degree is the count of the node's immediate children.
  4. 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.
  5. 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.
  6.  
  7. PROGRAM NAME: nocows
  8. INPUT FORMAT
  9. Line 1: Two space-separated integers, N and K.
  10. SAMPLE INPUT (file nocows.in)
  11. 5 3
  12. OUTPUT FORMAT
  13. Line 1: One single integer number representing the number of possible pedigrees MODULO 9901.
  14. SAMPLE OUTPUT (file nocows.out)
  15. 2
  16. OUTPUT DETAILS
  17. Two possible pedigrees have 5 nodes and height equal to 3:
  18. @ @
  19. / \ / \
  20. @ @ and @ @
  21. / \ / \
  22. @ @ @ @
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement