CodeForces - 791B Bear and Friendship Condition

题意:

给你m对朋友关系,如果x-y是朋友,y-z是朋友,要求x-z也是朋友. 问你所给的图是否符合。

思路:

题意简单明了,就是判图中点与点的关系是否都是团。可以直接建图搜一圈。

也可以用并查集,参考:http://blog.csdn.net/harlow_cheng/article/details/63519393

搜索思路代码:

#include <bits/stdc++.h>

using namespace std;
const int MAXN = 2e5;
map <int,int> mp[MAXN];
vector <int> edge[MAXN];
bool vis[MAXN];
int que[MAXN],ppp;
int mlist[MAXN],pp,x,y;
long long n,m;
long long cut;
bool make_list(int pos){//....................列出团中的每个点
    pp=-1;
    int len=edge[pos].size();
    int now;
    cut+=len;
    for(int i=0;i<len;i++){
        now=edge[pos][i];
        if(!vis[now]) return 0;//.............如果某个点已被搜索过,则可说明整张图不合题意。
        mlist[++pp]=now;
    }
    return 1;
}
bool judge(int pos){
    if(!make_list(pos)) return 0;
    for(int i=0;i<pp;i++){
        for(int j=i+1;j<=pp;j++){
            if(mp[mlist[i]][mlist[j]]!=1) return 0;//......构不成团
            cut++;
        }
    }
    for(int i=0;i<=pp;i++)//..................搜过的点打标记
        vis[mlist[i]]=0;
    return 1;
}
bool solve(){
    for(int i=0;i<=ppp;i++){
        if(vis[que[i]]){
            if(!judge(que[i])) return 0;
        }
    }
    //cout<<cut<<endl;
    if(m==cut)//..............................将所有的点搜完后,若还有剩余的边,说明图不合题意。
        return 1;
    else
        return 0;
}
int main()
{
    ios::sync_with_stdio(false);
    while(cin>>n>>m){
        for(int i=0;i<MAXN;i++){
            mp[i].clear();
            edge[i].clear();
        }
        ppp=-1;cut=0;
        memset(vis,0,sizeof(vis));
        memset(que,0,sizeof(que));
        for(int i=0;i<m;i++){
            cin>>x>>y;
            mp[x][y]=1;
            mp[y][x]=1;
            edge[x].push_back(y);
            edge[y].push_back(x);
            vis[x]=1;vis[y]=1;
        }
        if(m>(n*(n+1)/2)){//..................剪枝,边的个数不会大于所有点都在一个团里的情况。
            cout<<"NO"<<endl;
            return 0;
        }
        for(int i=1;i<=n;i++) if(vis[i]) que[++ppp]=i;
        if(solve()){
            cout<<"YES"<<endl;
        }else{
            cout<<"NO"<<endl;
        }
    }
}

Bear Limak examines a social network. Its main functionality is that two members can become friends (then they can talk with each other and share funny pictures).

There are n members, numbered 1 through nm pairs of members are friends. Of course, a member can't be a friend with themselves.

Let A-B denote that members A and B are friends. Limak thinks that a network isreasonable if and only if the following condition is satisfied: For every threedistinct members (XYZ), if X-Y and Y-Z then also X-Z.

For example: if Alan and Bob are friends, and Bob and Ciri are friends, then Alan and Ciri should be friends as well.

Can you help Limak and check if the network is reasonable? Print "YES" or "NO" accordingly, without the quotes.

Input

The first line of the input contain two integers n and m (3 ≤ n ≤ 150 000) — the number of members and the number of pairs of members that are friends.

The i-th of the next m lines contains two distinct integers ai and bi (1 ≤ ai, bi ≤ n, ai ≠ bi). Members ai and bi are friends with each other. No pair of members will appear more than once in the input.

Output

If the given network is reasonable, print "YES" in a single line (without the quotes). Otherwise, print "NO" in a single line (without the quotes).

Example
Input
4 3
1 3
3 4
1 4
Output
YES
Input
4 4
3 1
2 3
3 4
1 2
Output
NO
Input
10 4
4 3
5 10
8 9
1 2
Output
YES
Input
3 2
1 2
2 3
Output
NO
Note

The drawings below show the situation in the first sample (on the left) and in the second sample (on the right). Each edge represents two members that are friends. The answer is "NO" in the second sample because members (2, 3) are friends and members(3, 4) are friends, while members (2, 4) are not.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值