HDU 1269:迷宫城堡

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
 
发现自己真的是太弱辣……上学期写过一次tarjin,这次写是写出来了,然后各种错误(邻接表都能写错……真的是太弱辣
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

struct na{
    int y,ne;
}b[100001];
int l[10001],r[10001],n,m,num=0,st[10001],dfs[10001],low[10001],p,top,k,x,y;
bool pu[10001];
inline void in(int x,int y){
    num++;
    if (!l[x]) l[x]=num;else b[r[x]].ne=num;
    b[num].y=y;b[num].ne=0;r[x]=num;
}
inline void tarjan(int x){
    dfs[x]=low[x]=++p;
    st[++top]=x;pu[x]=1;
    register int i;
    for (i=l[x];i;i=b[i].ne)
    if (!dfs[b[i].y]) tarjan(b[i].y),low[x]=min(low[x],low[b[i].y]);else
    if (pu[b[i].y]) low[x]=min(low[x],low[b[i].y]);
    if (dfs[x]==low[x]){
        k++;
        while(st[top]!=x) pu[st[top]]=0,top--;
        pu[x]=0;
        top--;
    }
}
int main(){
    for (;;){
        memset(dfs,0,sizeof(dfs));
        memset(l,0,sizeof(l));
        p=0;top=0;k=0;num=0;
        scanf("%d%d",&n,&m);
        if (n==0&&m==0) break;
        while(m--) scanf("%d%d",&x,&y),in(x,y);
        for (register int i=1;i<=n;i++) if (!dfs[i]) tarjan(i);
        if (k==1) printf("Yes
");else printf("No
");
    }
}
View Code
原文地址:https://www.cnblogs.com/Enceladus/p/5319278.html