码迷,mamicode.com
首页 > 其他好文 > 详细

P98 图 两色染色

时间:2016-03-02 19:44:58      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

///图的搜索:两色染色问题

vector<int>G[MAX_V];
color[MAX_V];
bool dfs (int i,int c)
{
    color[i]=c;
    for(int j=0;i<G[i].size();j++)
    {
        if(color[ G[i][j] ]==c) return false; 
        if(color[ G[i][j] ]==0&&!dfs( G[i][j],-c )   )  return false;
    }
    return true;
}


void solve()
{
for(int i=0;i<num_v;i++)
{
    if(!color[i])
    {
       if(!dfs(0,1))
    {
     cout<<"No"<<endl; 
     return;  
    } 
    } 
}

 cout<<"Yes"<<endl;
}

 

P98 图 两色染色

标签:

原文地址:http://www.cnblogs.com/weiweiyi/p/5236131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!