#Lutece0249. Travel
Travel
Migrated from Lutece 249 Travel
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Given a map of islands and bridges that connect these islands, a Hamilton path, as we all know, is a path along the bridges such that it visits each island exactly once.
Suppose there are islands and bridges. Now we want to know there are how many different Hamilton paths?
Input
The input file starts with a number (no more than ) on the first line, which is the number of test cases. Each test case starts with a line with two integers n and m, which are the number of islands and the number of bridges in the map, respectively. The following m lines are in the form , which indicates there is a (two way) bridge between island and island . Islands are numbered from to . You may assume there will be no more than islands. (The data are generated randomly,so only in a few cases)
Output
For each test case, output a line with a number represent the number of different Hamilton paths.
Samples
2
2 1
1 2
4 4
1 2
1 3
2 3
3 4
2
4
Note
case : and
case :
The answer may exceed -bit integer. Please use long long int.
Resources
Classical problem modified by lcq.