#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 nn islands and mm bridges. Now we want to know there are how many different Hamilton paths?

Input

The input file starts with a number CC (no more than 100100) 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 xx yy, which indicates there is a (two way) bridge between island xx and island yy. Islands are numbered from 11 to nn. You may assume there will be no more than 1515 islands. (The data are generated randomly,so n=15n=15 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 11:1>21->2 and 2>12->1

case 22:1>2>3>4,2>1>3>4,4>3>1>2,4>3>2>11->2->3->4 , 2->1->3->4 , 4->3->1->2 , 4->3->2->1

The answer may exceed 3232-bit integer. Please use long long int.

Resources

Classical problem modified by lcq.