首页 > 其他 > 详细

Call to your teacher

时间:2020-07-24 23:31:33      阅读:120      评论:0      收藏:0      [点我收藏+]

Call to your teacher

x有y的电话号码,也就是说x可以给y打,y可以给所拥有的号码打,依此类推,最后有没有一个人有n的号码

单向的结构,代码呢?

技术分享图片
#include <bits/stdc++.h>
using namespace std;
int fa[60],n,m;
int main(){
    ios::sync_with_stdio(0);
    while(cin >> n >> m){
        fa[1] = 1;
        for(int i = 2; i <= n; i++)
            fa[i] = 0;
        for(int i = 0; i < m; i++){
            int x,y;
            cin >> x >> y;
            if(fa[x]) fa[y] = 1;
        }
        if(fa[n]) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
    return 0;
}
View Code

 

Call to your teacher

原文:https://www.cnblogs.com/xcfxcf/p/13374851.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!