HDU4997
Description
People are weak. Relationship between people like friendship or love is weak too. But a group of persons can have strong relationship, umm, 2-edge-connected relationship.
Suppose there are n persons. If two persons, A and B, are in a relationship, then we add an un-directional edge between them. In this way we can have a relationship graph, which is an un-directional graph without self-loops or multiple edges. If this graph is 2-edge-connected, then we say these persons have a strong relationship.
Now we have a group of persons without relationship between any two of them. And some pair of persons even hate each other. You will introduce some pairs of persons to know each other and set up a relationship between them to make the group of persons have a strong relationship. But notice that you can't set up a relationship between a pair of persons who hate each other. How many ways you can do that? (Two ways are different if there exists a pair of persons which have relationship in one way but not in another way).
output the answer modulo 1e9+7
Input
The first line contains an integer
, denoting the number of the test cases. For each test case, the first line contains 2 integers n and m, denoting the number of persons in the group and the number of pairs of persons who hate each other. Then m lines follow, each line containing 2 integers
and , denoting that and B hate each other.
The persons are indexed from . Output
For each test case, output the answer in a line.
Sample Input
1
2
3
4
5
6 3
5 0
10 0
5 2
1 2
2 3Sample Output
1
2
3 253
466997276
18Hint
A 2-edge-connected graph is a graph which is connected and if you remove an edge from it, it is still connected.
Note that
, so we can ignore the issue that whether a single vertex is 2-edge-connected or not :).
Solution
1.计算集合
直接做是
2. 计算集合
为计算双连通子图的方案 h[S][T]
表示将
一开始特别菜的不知道怎么预处理这个 我容斥不过关
Code
1 |
|