「SPOJ104」Highways

2015年4月29日3,2540

Description

In some countries building highways takes a lot of time… Maybe that’s because there are many possiblities to construct a network of highways and engineers can’t make up their minds which one to choose. Suppose we have a list of cities that can be connected directly. Your task is to count how many ways there are to build such a network that between every two cities there exists exactly one path. Two networks differ if there are two cities that are connected directly in the first case and aren’t in the second case. At most one highway connects two cities. No highway connects a city to itself. Highways are two-way.

Input

The input begins with the integer t, the number of test cases (equal to about 1000). Then t test cases follow. The first line of each test case contains two integers, the number of cities (1<=n<=12) and the number of direct connections between them. Each next line contains two integers a and b, which are numbers of cities that can be connected. Cities are numbered from 1 to n. Consecutive test cases are separated with one blank line.

Output

The number of ways to build the network, for every test case in a separate line. Assume that when there is only one city, the answer should be 1. The answer will fit in a signed 64-bit integer.

Example

题解

参见

http://wenku.baidu.com/link?url=65Ux-q9xTLx1gcqmiWx6LmYAAUMTgIU3Qm3m4MrBGE4J_YpA6f-4CHOPYukUhvRL9H2BP_cVSscFOi0BWpShzTYJzMCbf30wNuqvmoit6uu

行列式的绝对值:先用高斯消元消成上三角矩阵,把对角线乘起来

 

avatar
  Subscribe  
提醒