搜索与图论:有向图的拓扑序列

搜索与图论:有向图的拓扑序列

题目描述

输入样例

复制代码
3 3
1 2
2 3
1 3

输出样例

···

1 2 3

···

参考代码

cpp 复制代码
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

const int N = 100010;

int n, m;
int h[N], e[N], ne[N], idx;
int d[N], q[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];
            d[j]--;
            if (d[j] == 0) q[++ tt] = j;
        }
    }
    
    return tt == n - 1;
}

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);
        d[b]++;
    }
    
    if (topsort())
    {
        for (int i = 0; i < n; i++) printf("%d ", q[i]);
        puts("");
    }
    
    else puts("-1");
    
    return 0;
}
相关推荐
天赐学c语言几秒前
1.25 - 零钱兑换 && 理解右值以及move的作用
c++·算法·leecode
北冥湖畔的燕雀3 分钟前
C++智能指针:告别内存泄漏的利器
c++·算法
傻乐u兔6 分钟前
C语言进阶————数据在内存中的存储1
c语言·数据结构·算法
多米Domi01123 分钟前
0x3f 第42天 复习 10:39-11:33
算法·leetcode
thubier(段新建)24 分钟前
单招模考试卷模型思考(1)
算法·单招
议题一玩到28 分钟前
#leetcode# 1984. Minimum Difference Between Highest and Lowest of K Scores
数据结构·算法·leetcode
是娇娇公主~29 分钟前
算法——【最长回文子串】
c++·算法
你撅嘴真丑42 分钟前
计算2的N次方 和 大整数的因子
数据结构·c++·算法
孞㐑¥1 小时前
算法—前缀和
c++·经验分享·笔记·算法
yugi9878381 小时前
基于MATLAB的延迟求和(DAS)波束形成算法实现
开发语言·算法·matlab