图论应用——拓扑排序

拓扑排序的原理和宽度优先搜索差不多

cpp 复制代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

const int N = 100010;
int n,m;
int h[N],e[N],ne[N],idx;
int q[N],d[N];

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

bool topsort()
{
    int hh=0,tt=-1;
    for(int i=1;i<=n;i++)
        if(!d[i]) q[++tt]=i;
    while(hh<=tt)
    {
        int t = q[hh++];
        for(int i=h[t];i!=-1;i=ne[i])
        {
            int j = e[i];
            if(--d[j]==0)
            {
                q[++tt]=j;
            }
        }
    }
    return tt==n-1;
}

int main(void)
{
    scanf("%d%d", &n,&m);
    memset(h, -1, sizeof h);
    while (m -- )
    {
        int a,b;
        scanf("%d%d",&a,&b);
        add(a,b);
        d[b]++;
    }
    if(topsort())
    {
        for(int i=0;i<n;i++)
            printf("%d ",q[i]);
    }
    else puts("-1");
    return 0;
}
相关推荐
罗湖老棍子5 小时前
强迫症冒险家的任务清单:字典序最小拓扑排序
数据结构·算法·图论·拓扑排序
燃于AC之乐2 天前
我的算法修炼之路--8——预处理、滑窗优化、前缀和哈希同余,线性dp,图+并查集与逆向图
算法·哈希算法·图论·滑动窗口·哈希表·线性dp
2401_827499992 天前
代码随想录-图论28
算法·深度优先·图论
ValhallaCoder2 天前
Day51-图论
数据结构·python·算法·图论
ValhallaCoder2 天前
Day53-图论
数据结构·python·算法·图论
(❁´◡`❁)Jimmy(❁´◡`❁)3 天前
Atcoder abc441A~F 题解
算法·深度优先·图论
ValhallaCoder4 天前
Day50-图论
数据结构·python·算法·图论
ValhallaCoder4 天前
Day49-图论
数据结构·python·算法·图论
wuqingshun3141594 天前
蓝桥杯 云神的子数组和
算法·蓝桥杯·图论
小魏每天都学习4 天前
【数据结构学习】
算法·图论