zoukankan      html  css  js  c++  java
  • Graphs (Cakewalk) 1 B

    Discription

    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 (X, Y, Z), 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).

    Examples

    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.

    题目大意就是要你判断一下是否图中每个联通分量都是团(完全图)。
    这个暴力判断就行了,每条边至多会被判断一次,如果某条需要的边不存在那么就不合法。
    #include<bits/stdc++.h>
    #define ll long long
    using namespace std;
    const int maxn=150005;
    unordered_map<int,int> mmp[maxn];
    unordered_map<int,int> ::iterator it;
    int n,m,Q[maxn],H,T,uu,vv;
    bool v[maxn];
    int main(){
    	scanf("%d%d",&n,&m);
    	for(int i=1;i<=m;i++) scanf("%d%d",&uu,&vv),mmp[uu][vv]=mmp[vv][uu]=1;
    	
    	for(int i=1,now;i<=n;i++) if(!v[i]){
    		Q[H=T=1]=i,v[i]=1;
    		while(H<=T){
    			now=Q[H++];
    			for(it=mmp[now].begin();it!=mmp[now].end();++it) if(!v[it->first]){
    				for(int j=1;j<=T;j++) if(!mmp[Q[j]].count(it->first)){
    					puts("NO");
    					return 0;
    				}
    				Q[++T]=it->first,v[Q[T]]=1;
    			}
    		}
    	}
    	
    	puts("YES");
    	return 0;
    }
    

      

  • 相关阅读:
    前端战五渣学前端——跨域
    CSS3学习笔记
    Vue工程化入口文件main.js中Vue.config.productionTip = false含义
    CSS选择器有哪几种?举例轻松理解CSS选择器
    研究生综合英语 作文 作业
    tomcat部署项目的方法
    【Winfrom-无边框窗体】Winform如何拖动无边框窗体?
    C#调用默认浏览器打开网页的几种方法
    CefSharp在高DPI的屏幕上出现黑边(winform)
    c# 关于mongo bson转json的问题
  • 原文地址:https://www.cnblogs.com/JYYHH/p/8977058.html
Copyright © 2011-2022 走看看