Codeforces 791B Bear and Friendship Condition(DFS,有向图)

简介: B. Bear and Friendship Condition time limit per test:1 second memory limit per test:256 megabytes input:standard input output:st...
B. Bear and Friendship Condition
time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

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 n. m 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 is reasonable if and only if the following condition is satisfied: For every three distinct 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.

题目链接:http://codeforces.com/contest/791/problem/B

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

用DFS去找他们之间的关系,有向图去算m个点对应的边的数量,看是否相等!

下面给出AC代码:

 1 #include<bits/stdc++.h>
 2 typedef long long ll;
 3 using namespace std;
 4 const int N=150000+100;
 5 int a[N];
 6 int b[N];
 7 int vis[N];
 8 vector<int>vc[N];//定义一个向量
 9 ll t;
10 void DFS(int x)
11 {
12     t++;//计算有关的节点没有被标记过
13     vis[x]=1;
14     for(int j=0;j<vc[x].size();j++)
15     {
16         if(vis[vc[x][j]]==0)//如果和它相连的点没有被标记,
17         DFS(vc[x][j]);
18     }
19 }
20 int main()
21 {
22     int m,n;
23     int x,y;
24     scanf("%d%d",&n,&m);
25     memset(vis,0,sizeof(vis));
26     memset(b,0,sizeof(b));
27     for(int i=0;i<m;i++)
28     {
29         scanf("%d%d",&x,&y);
30         vc[x].push_back(y);//找到x和y的关系
31         vc[y].push_back(x);
32         b[x]=1;
33         b[y]=1;
34 
35     }
36     ll sum=0;
37     for(int i=1;i<=n;i++)
38     {
39         if(vis[i]==0&&b[i])
40         {
41             t=0;
42             DFS(i);
43             sum=sum+t*(t-1);//(t-1)*t求边数,完全图
44         }
45     }
46     if(2*m!=sum)cout<<"NO"<<endl;//N个完全图的边数等于m个节点所构成的边数
47     else
48         cout<<"YES"<<endl;
49 }

 

目录
相关文章
|
PyTorch Go 算法框架/工具
YOLOv8代码上线,官方宣布将发布论文,附精度速度初探和对比总结
【YOLOv8 注意事项】 1. YOLOv8 的官方仓库和代码已上线,文档教程网址也刚刚更新。 2. YOLOv8 代码集成在 ultralytics 项目中,目前看不会再单独创建叫做 YOLOv8 的项目。 3. YOLOv8 即将有论文了!要知道 YOLOv5 自从 2020 年发布以来,一直是没有论文的。而 YOLOv8(YOLOv5团队)这次首次承认将先发布 arXiv 版本的论文(目前还在火速撰写中)。
2623 0
YOLOv8代码上线,官方宣布将发布论文,附精度速度初探和对比总结
|
12月前
|
数据采集 JSON 网络安全
移动端数据抓取:Android App的TLS流量解密方案
本文介绍了一种通过TLS流量解密技术抓取知乎App热榜数据的方法。利用Charles Proxy解密HTTPS流量,分析App与服务器通信内容;结合Python Requests库模拟请求,配置特定请求头以绕过反爬机制。同时使用代理IP隐藏真实IP地址,确保抓取稳定。最终成功提取热榜标题、内容简介、链接等信息,为分析热点话题和用户趋势提供数据支持。此方法也可应用于其他Android App的数据采集,但需注意选择可靠的代理服务。
482 11
移动端数据抓取:Android App的TLS流量解密方案
|
数据采集 ice Sentinel
Google Earth Engine(GEE)——sentinel2数据介绍
Google Earth Engine(GEE)——sentinel2数据介绍
1567 0
Google Earth Engine(GEE)——sentinel2数据介绍
|
存储 弹性计算 云计算
深入理解云计算:探索IaaS、PaaS和SaaS服务模型
云计算作为当代信息技术领域的关键驱动力,通过提供弹性计算资源和灵活的服务模型,极大地改变了企业和个人的计算方式。本文深入探讨了云计算的基础概念,着重介绍了三种主要的云计算服务模型:IaaS、PaaS和SaaS。
1829 0
|
JavaScript 前端开发 Java
Vue 3.3 + Vite 4.3 + TypeScript 5+ Element-Plus:从零到一构建企业级后台管理系统(前后端开源)(一)
Vue 3.3 + Vite 4.3 + TypeScript 5+ Element-Plus:从零到一构建企业级后台管理系统(前后端开源)(一)
西门子S7-1200如何使用诊断缓冲区,查看CPU停机原因的方法
在西门子S7-1200中的诊断缓冲区是CPU系统存储器的一部分,诊断缓冲区中记录了由CPU或具有诊断功能的模块所检测到的事件和错误等。
西门子S7-1200如何使用诊断缓冲区,查看CPU停机原因的方法
|
弹性计算 Cloud Native 关系型数据库
【官方首发】—阿里云云计算&数据库ACP认证的解析与实战系列电子书来啦!
重磅推出【云计算、数据仓库、关系型数据库】ACP认证的解析与实战电子书!认证备考必备学习资料,免费下载!
【官方首发】—阿里云云计算&数据库ACP认证的解析与实战系列电子书来啦!
|
机器学习/深度学习 编解码 iOS开发
【Tech】啥是DeepFusion?看完这篇你就懂了!
【Tech】啥是DeepFusion?看完这篇你就懂了!
3373 0
【Tech】啥是DeepFusion?看完这篇你就懂了!
|
人工智能 安全 算法
隐语小课|隐私求交(PSI)及其应用场景
隐语小课|隐私求交(PSI)及其应用场景
1212 0