CF917D.Stranger Trees
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Will shares a psychic connection with the Upside Down Monster, so everything the monster knows, Will knows. Suddenly, he started drawing, page after page, non-stop. Joyce, his mom, and Chief Hopper put the drawings together, and they realized, it's a labeled tree!
A tree is a connected acyclic graph. Will's tree has n vertices. Joyce and Hopper don't know what that means, so they're investigating this tree and similar trees. For each k such that 0<=k<=n−1 , they're going to investigate all labeled trees with n vertices that share exactly k edges with Will's tree. Two labeled trees are different if and only if there's a pair of vertices (v,u) such that there's an edge between v and u in one tree and not in the other one.
Hopper and Joyce want to know how much work they have to do, so they asked you to tell them the number of labeled trees with n vertices that share exactly k edges with Will's tree, for each k . The answer could be very large, so they only asked you to tell them the answers modulo 1000000007=109+7 .
输入格式
The first line of input contains a single integer n ( 2<=n<=100 ) — the size of the tree.
The next n−1 lines contain the edges of Will's tree. Each line contains two integers v and u ( 1<=v,u<=n , v=u ), endpoints of an edge. It is guaranteed that the given graph is a tree.
输出格式
Print n integers in one line. i -th integer should be the number of the number of labeled trees with n vertices that share exactly i−1 edges with Will's tree, modulo 1000000007=109+7 .
输入输出样例
输入#1
3 1 2 1 3
输出#1
0 2 1
输入#2
4 1 2 2 3 3 4
输出#2
1 7 7 1
输入#3
4 1 2 1 3 1 4
输出#3
0 9 6 1