染色法判斷二分圖模板

#include<bits/stdc++.h>
using namespace std;
const int N=100010,M=200010;
int h[N],e[M],w[M],ne[M],idx,n,m,color[N];
inline void add(int a,int b,int c)
{
	e[idx]=b,w[idx]=c,ne[idx]=h[a],h[a]=idx++;
}
inline void read(int &x)
{
	int w=1;x=0;char ch=getchar();
	while(!isdigit(ch))	{if(ch=='-')w=-1;ch=getchar();}
	while(isdigit(ch))	x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
	x*=w;
}
inline bool dfs(int u,int c)
{
	color[u]=c;
	for(int i=h[u];i!=-1;i=ne[i])
	{
		int j=e[i];
		if(!color[j])
			if(!dfs(j,3-c))	return false;
		else if(color[j]==c)	return false;
	}
	return true;
}
int main()
{
	read(n); read(m);
	memset(h,-1,sizeof h);
	while(m--)
	{
		int a,b;
		read(a); read(b);
		add(a,b); read(b,a);
	}
	bool flag=true;
	for(int i=1;i<=n;i++)
		if(!color[i])
			if(!dfs(i,1))
			{
				flag=false;
				break;
			}
	if(flag)	puts("Yes");
	else	puts("No");
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章