其他分享
首页 > 其他分享> > AcWing 848.有向图的拓扑序列

AcWing 848.有向图的拓扑序列

作者:互联网

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
const int N=1e5+10;
int n,m;
int h[N],e[N],ne[N],idx;
int q[N],d[N];//d[]记录入度 入度=0 可以入队

bool topsort()
{
    int hh=0,tt=-1;
    for(int i=1;i<=n;i++)
        if(!d[i]) q[++tt]=i;//入度=0 入队
    
    while(hh<=tt)//不为空
    {
        int t=q[hh++];//取队头
        for(int i=h[t];i!=-1;i=ne[i])//遍历所有出边
        {
            int j=e[i];
            d[j]--;//j 入度-- 因为前面删掉了 那条线也就没了
            if(d[j]==0) q[++tt]=j;//入度为0 ,入队
        }
    }
    
    return tt==n-1;
}

void add(int a,int b)
{
    e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}

int main()
{
    cin>>n>>m;
    memset(h,-1,sizeof h);
    
    for(int i=0;i<m;i++)
    {
        int a,b;
        cin>>a>>b;
        add(a,b);//a->b
        d[b]++;//b入度++
    }
    
    if(topsort())
    {
        for(int i=0;i<n;i++) printf("%d ",q[i]);
        puts("");
    }
    else puts("-1");
    return 0;
}

标签:有向图,int,入度,848,++,入队,topsort,include,AcWing
来源: https://blog.csdn.net/m0_50564748/article/details/123065420