8668: Tree

内存限制:128 MB 时间限制:6 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

You are given a directed graph with n vertices and m edges. The vertices are numbered from 1 to n.

For each vertex ii, find out the number of ways to choose exactly n-1 edges to form a tree, where all the other n-1 vertices can be reached from i through these n-1 edges.

输入格式

The first line contains a single integer T(1T100) - the number of test cases.
For each test case:
The first line contains two integers n,m(1n500,0mn×(n1)) - the number of vertices and the number of edges.
The next mm lines, each line contains two integers x,y(1x,yn,x!=y), denoting an edge. It is guaranteed that all the edges are different.
It is guaranteed that there are no more than 3 test cases with n>100.
It is guaranteed that there are no more than 12 test cases with n>50

输出格式

For each test case, output n integers in a line, the i-th integer denotes the answer for vertex ii. Since the answer may be too large, print it after modulo 109+7.

Please do not have any space at the end of the line.

输入样例 复制

2
1 0
7 12
1 3
2 1
1 4
5 1
4 7
6 5
2 3
4 6
3 1
6 4
7 1
1 2

输出样例 复制

1
2 3 1 4 2 6 2