迷宫城堡 强连通
Problem Description 為了訓練小希的方向感,Gardon建立了一座大城堡,里面有N個房間(N<=10000)和M條通道(M<=100000),每個通道都是單向的,就是說若稱某通道連通了A房間和B房間,只說明可以通過這個通道由A房間到達B房間,但并不說明通過它可以由B房間到達A房間。Gardon需要請你寫個程序確認一下是否任意兩個房間都是相互連通的,即:對于任意的i和j,至少存在一條路徑可以從房間i到房間j,也存在一條路徑可以從房間j到房間i。
?
Input 輸入包含多組數據,輸入的第一行有兩個數:N和M,接下來的M行每行有兩個數a和b,表示了一條通道可以從A房間來到B房間。文件最后以兩個0結束。?
Output 對于輸入的每組數據,如果任意兩個房間都是相互連接的,輸出"Yes",否則輸出"No"。?
Sample Input 3 3 1 2 2 3 3 1 3 3 1 2 2 3 3 2 0 0?
Sample Output Yes No?
判斷強連通分量是否為1即可 #include<bits/stdc++.h> using namespace std; //input by bxd #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define repp(i,a,b) for(int i=(a);i>=(b);--i) #define RI(n) scanf("%d",&(n)) #define RII(n,m) scanf("%d%d",&n,&m) #define RIII(n,m,k) scanf("%d%d%d",&n,&m,&k) #define RS(s) scanf("%s",s); #define ll long long #define pb push_back #define REP(i,N) for(int i=0;i<(N);i++) #define CLR(A,v) memset(A,v,sizeof A) // #define inf 0x3f3f3f3f const int N=100000+5; int head[N]; int pos; struct Edge {int to,nex; }edge[N]; void add(int a,int b) {edge[++pos].nex=head[a];head[a]=pos;edge[pos].to=b; } int dfn[N],low[N],Stack[N],vis[N]; int tot=0,index=0; int cnt=0; void tarjan(int x) {dfn[x]=low[x]=++tot;Stack[++index]=x;vis[x]=1;for(int i=head[x];i;i=edge[i].nex){if(!dfn[edge[i].to]){tarjan(edge[i].to);low[x]=min(low[x],low[edge[i].to]);}else if(vis[edge[i].to])low[x]=min(low[x],dfn[edge[i].to]);}if(low[x]==dfn[x]){cnt++;do{vis[ Stack[index] ]=0;index--;}while(x!=Stack[index+1]);} } int main() {int n,m;while(~RII(n,m),n||m){CLR(head,0);CLR(dfn,0);CLR(low,0);pos=tot=index=0;rep(i,1,m){int a,b;RII(a,b);add(a,b);}cnt=0;rep(i,1,n)if(!dfn[i])tarjan(i);printf("%s\n",cnt==1?"Yes":"No");}return 0; } View Code?
轉載于:https://www.cnblogs.com/bxd123/p/10795754.html
總結
- 上一篇: C++开发WPF,开发环境配置
- 下一篇: scala继承