NYOJ 题目1015 二部图(染色法判二分图)

二部图

时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 1
描述

二部图又叫二分图,我们不是求它的二分图最大匹配,也不是完美匹配,也不是多重匹配,而是证明一个图是不是二部图。证明二部图可以用着色来解决,即我们可以用两种颜色去涂一个图,使的任意相连的两个顶点颜色不相同,切任意两个结点之间最多一条边。为了简化问题,我们每次都从0节点开始涂色

输入
输入:
多组数据
第一行一个整数 n(n<=200) 表示 n个节点
第二行一个整数m 表示 条边
随后 m行 两个整数 u , v 表示 一条边
输出
如果是二部图输出 BICOLORABLE.否则输出 NOT BICOLORABLE.
样例输入
330 11 22 0320 10 2
样例输出
NOT BICOLORABLE.BICOLORABLE.
上传者
ACM_王亚龙
ac代码
#include
#include
#include
#include
#include
#include
using namespace std;
int n,m,vis[205],color[205];
vectorvt[205];
int bfs(int u)
{
	queueq;
	q.push(u);
	color[u]=1;
	while(!q.empty())
	{
		int now=q.front();
		q.pop();
		if(vis[now])
			continue;
		for(int i=0;i


你可能感兴趣的:(二分图)