首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【POJ】2367 - Genealogical tree(拓扑)

【POJ】2367 - Genealogical tree(拓扑)

作者头像
FishWang
发布2025-08-26 20:00:57
发布2025-08-26 20:00:57
14700
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

Genealogical tree

Time Limit: 1000MS

Memory Limit: 65536K

Total Submissions: 4619

Accepted: 3065

Special Judge

Description

The system of Martians' blood relations is confusing enough. Actually, Martians bud when they want and where they want. They gather together in different groups, so that a Martian can have one parent as well as ten. Nobody will be surprised by a hundred of children. Martians have got used to this and their style of life seems to them natural. And in the Planetary Council the confusing genealogical system leads to some embarrassment. There meet the worthiest of Martians, and therefore in order to offend nobody in all of the discussions it is used first to give the floor to the old Martians, than to the younger ones and only than to the most young childless assessors. However, the maintenance of this order really is not a trivial task. Not always Martian knows all of his parents (and there's nothing to tell about his grandparents!). But if by a mistake first speak a grandson and only than his young appearing great-grandfather, this is a real scandal. Your task is to write a program, which would define once and for all, an order that would guarantee that every member of the Council takes the floor earlier than each of his descendants.

Input

The first line of the standard input contains an only number N, 1 <= N <= 100 — a number of members of the Martian Planetary Council. According to the centuries-old tradition members of the Council are enumerated with the natural numbers from 1 up to N. Further, there are exactly N lines, moreover, the I-th line contains a list of I-th member's children. The list of children is a sequence of serial numbers of children in a arbitrary order separated by spaces. The list of children may be empty. The list (even if it is empty) ends with 0.

Output

The standard output should contain in its only line a sequence of speakers' numbers, separated by spaces. If several sequences satisfy the conditions of the problem, you are to write to the standard output any of them. At least one such sequence always exists.

Sample Input

代码语言:javascript
代码运行次数:0
运行
复制
5
0
4 5 1 0
1 0
5 3 0
3 0

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
2 4 5 3 1

Source

Ural State University Internal Contest October'2000 Junior Session

用vector存图,拓扑就行了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <cstring>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
#define CLR(a,b) memset(a,b,sizeof(a))
#define INF 0x3f3f3f3f
vector<int> mapp[111];
int in[111];
int n;
void topo()
{
	bool flag = true;
	priority_queue<int,vector<int>,greater<int> > q;
	for (int i = 1 ; i <= n ; i++)
	{
		if (in[i] == 0)
			q.push(i);
	}
	while (!q.empty())
	{
		int u = q.top();
		q.pop();
		in[u] == -1;
		if (flag)
			printf ("%d",u) , flag = false;
		else
			printf (" %d",u);
		for (int i = 0 ; i < mapp[u].size() ; i++)
		{
			int v = mapp[u][i];
			in[v]--;
			if (in[v] == 0)
				q.push(v);
		}
	}
	printf ("\n");
}
int main()
{
	while (~scanf ("%d",&n))
	{
		CLR(in,0);
		for (int i = 1; i <= n ; i++)
		{
			int t;
			mapp[i].clear();
			while (~scanf ("%d",&t) && t)
			{
				mapp[i].push_back(t);
				in[t]++;
			}
		}
		topo();
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档