迷宫城堡
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 13917 Accepted Submission(s):
6203
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
Author
Gardon
Source
HDU
2006-4 Programming Contest
Recommend
lxj | We have carefully selected several similar
problems for you: 1233 1142 1217 1162 1102
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<stack> 5 using namespace std; 6 const int MAX_N=10010; 7 const int MAX_M=100010; 8 int head[MAX_N],n,m,T,visx,dfn[MAX_N],low[MAX_N],tot,suodian; 9 bool exist[MAX_N]; 10 struct node{ 11 int to,from,next; 12 }e[MAX_M]; 13 stack<int>st; 14 void prepare(){ 15 memset(head,0,sizeof(head));tot=0;visx=0;suodian=0; 16 while(!st.empty())st.pop(); 17 memset(dfn,-1,sizeof(dfn));memset(low,-1,sizeof(low)); 18 } 19 void Add_Edge(int u,int v){ 20 e[++tot].from=u;e[tot].to=v; 21 e[tot].next=head[u];head[u]=tot; 22 } 23 void Tarjan(int u){ 24 dfn[u]=low[u]=++visx; 25 exist[u]=true;st.push(u); 26 for(int i=head[u];i;i=e[i].next){ 27 int v=e[i].to; 28 if(dfn[v]==-1){ 29 Tarjan(v); 30 if(low[v]<low[u]) low[u]=low[v]; 31 } 32 else if(exist[v]&&low[u]>dfn[v])low[u]=dfn[v]; 33 } 34 int j; 35 if(low[u]==dfn[u]){ 36 ++suodian; 37 do{ 38 j=st.top();st.pop();exist[j]=false; 39 }while(j!=u); 40 } 41 } 42 int main() 43 { 44 while(scanf("%d%d",&n,&m)){ 45 prepare(); 46 if(n==0&&m==0) break; 47 for(int i=1,x,y;i<=m;i++){ 48 scanf("%d%d",&x,&y); 49 Add_Edge(x,y); 50 } 51 for(int i=1;i<=n;i++) 52 if(dfn[i]==-1) Tarjan(i); 53 if(suodian==1) printf("Yes "); 54 else printf("No "); 55 } 56 return 0; 57 }
思路:Tarjan缩点,所有点缩完之后只有一个点就是Yes,否则NO,强连通分量裸题。
今天第一道题就一遍AC,