鱼C论坛

 找回密码
 立即注册
查看: 1812|回复: 1

[技术交流] 029:Legal or not

[复制链接]
发表于 2018-2-13 17:06:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Messj 于 2018-6-8 23:41 编辑

Problem Description
ACM-DIY is a large QQ group where many excellent acmers get together. It is so harmonious that just like a big family. Every day,many "holy cows" like HH, hh, AC, ZT, lcc, BF, Qinz and so on chat on-line to exchange their ideas. When someone has questions, many warm-hearted cows like Lost will come to help. Then the one being helped will call Lost "master", and Lost will have a nice "prentice". By and by, there are many pairs of "master and prentice". But then problem occurs: there are too many masters and too many prentices, how can we know whether it is legal or not?

We all know a master can have many prentices and a prentice may have a lot of masters too, it‘s legal. Nevertheless,some cows are not so honest, they hold illegal relationship. Take HH and 3xian for instant, HH is 3xian‘s master and, at the same time, 3xian is HH‘s master,which is quite illegal! To avoid this,please help us to judge whether their relationship is legal or not.

Please note that the "master and prentice" relation is transitive. It means that if A is B‘s master ans B is C‘s master, then A is C‘s master.



Input
The input consists of several test cases. For each case, the first line contains two integers, N (members to be tested) and M (relationships to be tested)(2 <= N, M <= 100). Then M lines follow, each contains a pair of (x, y) which means x is y‘s master and y is x‘s prentice. The input is terminated by N = 0.
TO MAKE IT SIMPLE, we give every one a number (0, 1, 2,..., N-1). We use their numbers instead of their names.



Output
For each test case, print in one line the judgement of the messy relationship.
If it is legal, output "YES", otherwise "NO".



Sample Input
3 2
0 1
1 2
2 2
0 1
1 0
0 0

Sample Output
YES
NO

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2018-2-13 17:08:04 | 显示全部楼层
【题目大意】

ACM-DIY这个QQ群里有很多大佬,也有一些像我这样的渣萌新,萌新们经常在问问题,久而久之,就形成了师徒关系,但是有些师徒关系是不合法的,比如说:A是B的师傅,而B又是A的师傅,总之形成了环就是不合法的,现在给你一些师徒关系,让你判断是否合法。



【题目分析】

其实就是给你一个图,让你判断是否会形成回路,如果会就是不合法的,否则合法。

简单的拓扑排序

  1. #include<cstdio>
  2. #include<vector>
  3. #include<queue>
  4. #define N 101

  5. using namespace std;

  6. vector<int> edge[N];
  7. queue<int> Q;
  8. int main()
  9. {
  10.         int inDegree[N];
  11.         int n,m;
  12.         while(scanf("%d%d",&n,&m)!=EOF)
  13.         {
  14.                 if(n==0&&m==0)        break;
  15.                 for(int i=1;i<=n;i++)
  16.                 {
  17.                         edge[i].clear();
  18.                         inDegree[i]=0;
  19.                 }       
  20.                 while(m--)
  21.                 {
  22.                         int a,b;
  23.                         scanf("%d%d",&a,&b);
  24.                         inDegree[b]++;
  25.                         edge[a].push_back(b);
  26.                 }
  27.                 while(!Q.empty())        Q.pop();
  28.                 for(int i=0;i<n;i++)
  29.                         if(inDegree[i]==0)
  30.                                 Q.push(i);
  31.                 int cnt=0;
  32.                 while(!Q.empty())
  33.                 {
  34.                         int newP=Q.front();
  35.                         Q.pop();
  36.                         cnt++;
  37.                         for(int i=0;i<edge[newP].size();i++)
  38.                         {
  39.                                 int t=edge[newP][i];
  40.                                 inDegree[t]--;
  41.                                 if(inDegree[t]==0)
  42.                                         Q.push(t);
  43.                         }
  44.                 }
  45.                 if(cnt==n)
  46.                         printf("YES\n");
  47.                 else
  48.                         printf("No");
  49.         }
  50.         return 0;
  51. }
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-4-19 13:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表