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

[BJOI 2018]染色

时间:2018-08-04 18:43:32      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:main   ==   its   return   ++   bit   while   ace   turn   

题意:求01成立。

并查集维护,记录一个变量判断决策。

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int maxn = 4000010;
int f[maxn];
inline int find(int x){
    return x == f[x]?x : f[x] = find(f[x]);
}
signed main()
{
    ios::sync_with_stdio(false);
    int T;
    cin >> T;
    while(T--){
        int n,m;
        cin >> n >> m;
        int tag = (m < n + 2);
        for(int i = 1;i <= (n << 1); ++i){
            f[i] = i;
        }
        for(int i = 1;i <= m; ++i){
            int x,y;
            cin >> x >> y;
            f[find(x)] = find(y + n);
            f[find(y)] = find(x + n);
        }
        for(int i = 1;i <= n && tag; ++i){
            tag &= (find(i) != find(i + n));
        }
        if(tag) puts("YES");
        else puts("NO");
    }
    return 0;
}

[BJOI 2018]染色

标签:main   ==   its   return   ++   bit   while   ace   turn   

原文地址:https://www.cnblogs.com/akoasm/p/9419241.html

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