1639. 拓扑顺序

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1639. 拓扑顺序相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
https://www.acwing.com/problem/content/description/1641/

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
const int N=1e3+10;
const int M=1e4+10;
int h[N],e[M],ne[M],idx;
int d[N],backup[N];
int n,m;
void add(int a,int b)
{
	e[idx]=b,ne[idx]=h[a],h[a]=idx++;
}
bool topsort(int a[])
{
	memcpy(backup,d,sizeof d);
	for(int i=0;i<n;i++)
	{
		int t=a[i];
		if(backup[t]!=0) return true;
		for(int j=h[t];j!=-1;j=ne[j])
		{
			int k=e[j];
			if(backup[k]!=0) backup[k]--;
		}
	}
	for(int i=1;i<=n;i++) if(backup[i]) return true;
	return false;
}
int main(void)
{
    memset(h,-1,sizeof h);
	cin>>n>>m;
	while(m--)
	{
		int a,b; cin>>a>>b;
		add(a,b);
		d[b]++;
	}
	int t; cin>>t;
	for(int i=0;i<t;i++)
	{
		int a[N];
		for(int  j=0;j<n;j++) cin>>a[j];
		if(topsort(a)) cout<<i<<" ";
	}
	return 0;
} 

以上是关于1639. 拓扑顺序的主要内容,如果未能解决你的问题,请参考以下文章

html 将以编程方式附加外部脚本文件的javascript代码片段,并按顺序排列。用于响应式网站,其中ma

[拓扑排序]

数据结构与算法简记--拓扑排序

[VijosP1639]机密文件 题解

如果您有一个拓扑有序图,基于到根的最大距离的稳定排序会保留拓扑顺序吗?

poj 1639 最小k度限制生成树