tarjan 축소. - 인기 소. - 노트.
1673 단어 도론
#include/// hzwer ,%%%hzwer
#include
#include
#include
#include
#define MAXN 10005
#define MAXM 50005
using namespace std;
struct data{
int to,next;
}e[MAXM],d[MAXM];
int head[MAXN];
int n,m,cnt,top;
int dfn[MAXN],low[MAXN],q[MAXN];
int scc,h[MAXN],belong[MAXN],hav[MAXN];
bool vis[MAXN],inq[MAXN];
int ans;
void dfs(int a){
int now;
vis[a]=inq[a]=1;
low[a]=dfn[a]=++cnt;
q[++top]=a;
int c=head[a];
while(c){///
if(!vis[e[c].to ]){
dfs(e[c].to );
low[a]=min(low[a],low[e[c].to ]);
}
else if(inq[e[c].to ]) low[a]=min(low[a],dfn[e[c].to ]);
c=e[c].next ;
}
if(low[a]==dfn[a]){//// a SCC
scc++;
while(now!=a){//// SCC
now=q[top--];
inq[now]=0;
belong[now]=scc;
++hav[scc];
}
}
}
void rebuild(){///SCC ,
cnt=0;
for(int i=1;i<=n;i++){
int c=head[i];
while(c){//// i
if(belong[i]!=belong[e[c].to]){
d[++cnt].to =belong[e[c].to ];
d[cnt].next =h[belong[i]];
h[belong[i]]=cnt;
}
c=e[c].next ;
}
}
}
void tarjan(){
for(int i=1;i<=n;i++) if(!vis[i]) dfs(i);
rebuild();
}
void work(){
for(int i=1;i<=scc;i++)
if(!h[i]){/////
if(ans){
ans=0;return;
}
else ans=hav[i];
}
}
int main(){
scanf("%d%d",&n,&m);
int a,b;
for(int i=1;i<=m;i++){
scanf("%d%d",&a,&b);
e[++cnt].to =b;
e[cnt].next =head[a];
head[a]=cnt;
}
tarjan();
work();
printf("%d",ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU 3631 Shortest Path(Floyd + 플러그인)제목: n개의 점 m줄 테두리(단방향 테두리)와 q차 조작을 드리겠습니다. 처음에는 모든 점이 표시가 없습니다. 두 가지 조작이 있습니다. 1.0 x: x를 표시하고 가까이 표시한 경우 "ERROR! At point...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.