A1146 Topological Order(拓扑排序)

题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805343043829760

判断是否是拓扑序列,每个选项的元素输入的时候要去判断它的入度是否为0,如果不是的话做一个标记。
在存储的时候是用邻接表,用一个数组来统计每个点的入度,然后就可以开始判断了。在判断的时候,我们要将与这个点去掉,也就是这个点连接的所有点的入度都减了1,具体见代码吧。

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include<stack>
#include<queue>
#include<sstream>
using namespace std;

/*
A1146 Topological Order (25 分)
这题需要用一个数组记录结点的入度
*/
const int MaxN = 1010;

vector<int> G[1010];

//判断topology sort
bool Judge_t(vector<int> a, vector<int> indegree) {	//这里不能加引用
	for (int i = 0; i < a.size(); i++) {
		if (indegree[a[i]] == 0) {
			//把a[i]指向的结点入度减一
			for (int j = 0; j < G[a[i]].size(); j++) {
				indegree[G[a[i]][j]]--;
			}
		}
		else
			return false;
	}

	return true;
}

int main() {
	//freopen("input.txt", "r", stdin);

	// N (≤ 1,000), the number of vertices in the graph, \
	and M (10,000), the number of directed edges
	int N, M;
	cin >> N >> M;
	vector<int> indegree(N);	//记录入度
	fill(indegree.begin(), indegree.end(), 0);
	for (int i = 0; i < M; i++) {

		int s, e;
		cin >> s >> e;
		s--; e--;
		G[s].push_back(e);
		indegree[e]++;
	}

	int K;
	cin >> K;
	vector<int> ans;	//记录答案
	for (int i = 0; i < K; i++) {
		vector<int>  temp(N);
		for (int j = 0; j < N; j++) {
			cin >> temp[j];
			temp[j]--;
		}
		if (Judge_t(temp,indegree) == false)
			ans.push_back(i);
	}

	for (int i = 0; i < ans.size(); i++) {
		cout << ans[i];
		if (i < ans.size() - 1)
			cout << " ";
		else
			cout << endl;
	}

	return 0;
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值