zoukankan      html  css  js  c++  java
  • poj 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

      直接套模板

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <queue>
     4 using namespace std;
     5 const int maxn = 1e5 + 7;
     6 
     7 int n, du[maxn], head[maxn], tot;
     8 struct node {
     9     int v, next;
    10 } edge[maxn];
    11 queue<int>q;
    12 void add(int u, int v) {
    13     edge[tot].v = v;
    14     edge[tot].next = head[u];
    15     head[u] = tot++;
    16 }
    17 void init() {
    18     tot = 0;
    19     memset(du, 0, sizeof(du));
    20     memset(head, -1, sizeof(head));
    21 }
    22 void solve() {
    23     while(!q.empty()) {
    24         int u = q.front();
    25         q.pop();
    26         printf("%d ", u);
    27         for (int i = head[u] ; i != -1 ; i = edge[i].next) {
    28             du[edge[i].v]--;
    29             if (!du[edge[i].v]) q.push(edge[i].v);
    30         }
    31     }
    32 }
    33 int main() {
    34     scanf("%d", &n);
    35     init();
    36     for (int i = 1 ; i <= n ; i++) {
    37         int x;
    38         while(scanf("%d", &x), x != 0) {
    39             add(i, x);
    40             du[x]++;
    41         }
    42     }
    43     for (int i = 1 ; i <= n ; i++)
    44         if (!du[i]) q.push(i);
    45     solve();
    46     return 0;
    47 }
  • 相关阅读:
    jboss项目迁移至WebLogic12
    数据库字段关联更新
    清理ms sql server 大日志文件数据
    tool class
    pwn学习日记Day17 《程序员的自我修养》读书笔记
    pwn学习日记Day16 pwn原理理解
    pwn学习日记Day15 《程序员的自我修养》读书笔记
    pwn学习日记Day14 《程序员的自我修养》读书笔记
    pwn学习日记Day13 《程序员的自我修养》读书笔记
    pwn学习日记Day12 《程序员的自我修养》读书笔记
  • 原文地址:https://www.cnblogs.com/qldabiaoge/p/9089520.html
Copyright © 2011-2022 走看看