我是靠谱客的博主 哭泣过客,最近开发中收集的这篇文章主要介绍二分图+染色 poj 2492,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用染色法看每一个连通图里有没有相互矛盾的

如果有那就是同性恋喽!!

#include<stdio.h>  
#include<string.h>  
#include<algorithm>
#include<queue>
#include<math.h>
using namespace std;
struct node
{
    int u,val;
    int next;
}e[1000000*4];
int top;
int head[1000005];
void add(int u,int v)
{
    e[top].u=v;
    e[top].next=head[u];
    head[u]=top++;
}
int color[1000005],f;
void dfs(int x,int c)
{
    color[x]=c;
    if(f==1)
       return;
    for(int i=head[x];i!=-1;i=e[i].next)
    {
        int u=e[i].u;
        //printf("%d %d %d %d ...n",x,color[x],u,color[u]);
        if(color[u]==-1)
        {
            dfs(u,!c);
        }
        else if(color[u]==c)
        {
            f=1;
            break;
        }
    }
    //return;
}
int main()
{
    int  t,tt=0;
    scanf("%d",&t);
    while(t--)
    {
        tt++;
        memset(color,-1,sizeof(color));
        memset(head,-1,sizeof(head));
        int n,m;
        scanf("%d%d",&n,&m);
        top=0;
        for(int i=0;i<m;i++)
        {
            int a,b;
            scanf("%d%d",&a,&b);
            add(a,b);
            add(b,a);
        }
         f=0;
        for(int i=1;i<=n;i++)
        {
            if(f==1)
                break;
                if(color[i]==-1)
            dfs(i,0);
        }
        printf("Scenario #%d:n",tt);
        if(f)
        {
            printf("Suspicious bugs found!n");
        }
        else printf("No suspicious bugs found!n");
        if(tt)printf("n");
    }
}

最后

以上就是哭泣过客为你收集整理的二分图+染色 poj 2492的全部内容,希望文章能够帮你解决二分图+染色 poj 2492所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部