九度 题目1448:Legal or Not
Posted ljbguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了九度 题目1448:Legal or Not相关的知识,希望对你有一定的参考价值。
推断是否存在环的问题,本文採用的是拓扑排序,假设输出的节点少于N,则形成了环,和之前的1449差点儿是一样的代码
题目链接php?
pid=1448">http://ac.jobdu.com/problem.php?pid=1448
转载请注明本文地址http://blog.csdn.net/yangnanhai93/article/details/41226369
#include <iostream> #include <memory.h> #include <queue> using namespace std; int A[100],MapCount[100][100]; bool TopoSort(int n) { queue<int> qu; for(int i=0;i<n;i++) if(A[i]==0) qu.push(i); int count=0; while(!qu.empty()) { int front=qu.front(); qu.pop(); count++; for (int i=0;i<n;i++) { if(MapCount[front][i]) { A[i]--; if(A[i]==0) qu.push(i); } } } if(count==n) return true; else return false; } int main() { //freopen("data.in","r",stdin); int m,n,x,y; while(cin>>m>>n&&m) { memset(A,0,sizeof(A)); memset(MapCount,0,sizeof(MapCount)); for(int i=0;i<n;i++) { cin>>x>>y; MapCount[x][y]=1; } for(int i=0;i<m;i++) for(int j=0;j<m;j++) if(MapCount[i][j]!=0) A[j]++; if(TopoSort(m)) cout<<"YES"<<endl; else cout<<"NO"<<endl; } return 0; } /************************************************************** Problem: 1448 User: vincent_ynh Language: C++ Result: Accepted Time:10 ms Memory:1560 kb ****************************************************************/
以上是关于九度 题目1448:Legal or Not的主要内容,如果未能解决你的问题,请参考以下文章