#P10922. [2015杭电多校]Friends
[2015杭电多校]Friends
Friends
Problem Description
There are people and pairs of friends. For every pair of friends, they can choose to become online friends (communicating using online applications) or offline friends (mostly using face-to-face communication). However, everyone in these people wants to have the same number of online and offline friends (i.e. If one person has onine friends, he or she must have offline friends too, but different people can have different number of online or offline friends). Please determine how many ways there are to satisfy their requirements.
Input
The first line of the input is a single integer , indicating the number of testcases. For each testcase, the first line contains two integers and , indicating the number of people and the number of pairs of friends, respectively. Each of the next lines contains two numbers and , which mean and are friends. It is guaranteed that and every friend relationship will appear at most once.
Output
For each testcase, print one number indicating the answer.
Sample Input
2
3 3
1 2
2 3
3 1
4 4
1 2
2 3
3 4
4 1
Sample Output
0
2
Author
XJZX
Source
2015 Multi-University Training Contest 2