染色法判定二分图

12. 染色法判定二分图


染色法判定二分图

![在这里插入图片描述]( https://img-blog.csdnimg.cn/20210518211906663.png?x-oss-process=image/watermark ,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl81MzAzNzM3OQ==,size_16,color_FFFFFF,t_70)

输入样例:

4 4
1 3
1 4
2 3
2 4

输出样例:

Yes

模板:

//染色法判定二分图 
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
const int N = 100010,M = 200010;

int n,m;
int h[N],e[N],ne[N],idx;
int color[N];

void add(int a,int b){
	e[idx]=b;
	ne[idx]=h[a];
	h[a]=idx++;
}

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(){
	scanf("%d%d",&n,&m);
	
	memset(h,-1,sizeof h);
	
	while(m--){
		int a,b;
		scanf("%d%d",&a,&b);
		add(a,b),add(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");
    
    return 0;
}

 

posted @ 2022-03-22 01:10  panse·  阅读(11)  评论(0)    收藏  举报