当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

5305:Friends

题目描述
There are $n$ people and $m$ 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 $n$ people wants to have the same number of online and offline friends (i.e. If one person has $x$ onine friends, he or she must have $x$ 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.
输入解释
The first line of the input is a single integer $T\ (T=100)$, indicating the number of testcases.

For each testcase, the first line contains two integers $n\ (1 \le n \le 8)$ and $m\ (0 \le m \le \frac{n(n-1)}{2})$, indicating the number of people and the number of pairs of friends, respectively. Each of the next $m$ lines contains two numbers $x$ and $y$, which mean $x$ and $y$ are friends. It is guaranteed that $x \neq y$ and every friend relationship will appear at most once.
输出解释
For each testcase, print one number indicating the answer.
输入样例
2
3 3
1 2
2 3
3 1
4 4
1 2
2 3
3 4
4 1
输出样例
0
2
来自杭电HDUOJ的附加信息
Author XJZX
Recommend wange2014

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-5305

最后修改于 2020-10-25T23:21:31+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/65536K(Java/Others)