邪恶的条鱼吧 关注:27贴子:456
  • 1回复贴,共1

此贴为程序设计专用,禁水!!!

只看楼主收藏回复

topcoder codeforce bestcoder 各种oj~~welcome to you all discuss in here。。。。。


IP属地:上海1楼2014-11-22 21:26回复
    B. Queuetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
    During the lunch break all n Berland State University students lined up in the food court. However, it turned out that the food court, too, has a lunch break and it temporarily stopped working.
    Standing in a queue that isn't being served is so boring! So, each of the students wrote down the number of the student ID of the student that stands in line directly in front of him, and the student that stands in line directly behind him. If no one stands before or after a student (that is, he is the first one or the last one), then he writes down number 0 instead (in Berland State University student IDs are numerated from 1).
    After that, all the students went about their business. When they returned, they found out that restoring the queue is not such an easy task.
    Help the students to restore the state of the queue by the numbers of the student ID's of their neighbors in the queue.
    Input
    The first line contains integer n (2≤n≤2·105) — the number of students in the queue.
    Then n lines follow, i-th line contains the pair of integers ai,bi (0≤ai,bi≤106), where ai is the ID number of a person in front of a student and bi is the ID number of a person behind a student. The lines are given in the arbitrary order. Value 0 is given instead of a neighbor's ID number if the neighbor doesn't exist.
    The ID numbers of all students are distinct. It is guaranteed that the records correspond too the queue where all the students stand in some order.
    Output
    Print a sequence of n integers x1,x2,...,xn — the sequence of ID numbers of all the students in the order they go in the queue from the first student to the last one.
    Sample test(s)input4
    92 31
    0 7
    31 0
    7 141
    output
    92 7 31 141
    codeforce


    IP属地:上海2楼2014-11-23 17:57
    回复