POJ 2367 Genealogical tree (拓扑排序基础题)

Posted leonard-

tags:

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

题目链接:http://poj.org/problem?id=2367

题目:

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

5
0
4 5 1 0
1 0
5 3 0
3 0

Sample Output

2 4 5 3 1
题意:n行,第i行代表第i个的子女们,以0为终止。
题解:简单的模板题
 1 #include <queue>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 using namespace std;
 6 
 7 const int N=233;
 8 int n,m;
 9 int in[N];
10 bool E[N][N];
11 queue <int> Q;
12 
13 void toposort(){
14     for(int i=1;i<=n;i++){
15         //寻找入度为0的点
16         int j=1;
17         while(in[j]!=0) j++;
18         in[j]--;
19         Q.push(j);
20         //将关联的点的入度减1,即删除与该节点关联的边
21         for(int k=1;k<=n;k++){
22             if(E[j][k]) in[k]--;
23         }
24     }
25 }
26 
27 int main(){
28     scanf("%d",&n);
29     for(int i=1;i<=n;i++){
30         while(scanf("%d",&m)!=EOF){
31             if(m==0) break;
32             if(!E[i][m]){
33                 E[i][m]=1;
34                 in[m]++;
35             }
36         }
37     }
38     toposort();
39     while(!Q.empty()){
40         if(Q.size()==1) printf("%d\n",Q.front());
41         else printf("%d ",Q.front());
42         Q.pop();
43     }
44     return 0;
45 }

 

以上是关于POJ 2367 Genealogical tree (拓扑排序基础题)的主要内容,如果未能解决你的问题,请参考以下文章

POJ 2367 Genealogical tree 拓扑排序入门题

poj2367 Genealogical tree

图论之拓扑排序 poj 2367 Genealogical tree

拓扑排序 POJ2367Genealogical tree[topo-sort]

(拓扑排序)POJ - 2367 Genealogical tree

POJ 2367 Genealogical tree 拓扑题解