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.
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.
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.
4 92 31 0 7 31 0 7 141
92 7 31 141
The picture illustrates the queue for the first sample.

题解:前几天正再写并查集,正巧写到了这题....
我的做法比较复杂,用并查集记录路径,不进行状态压缩(因为题目数据挺小的),反正最后我只需要遍历一遍就行了。
我还判断了奇偶,感觉写复杂了....
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
using namespace std;
int father[1000005],n,x,y,son[1000005];
int q[200005],sta[200005],flag[1000005],h,u,v;
int main()
{
memset(flag,0,sizeof(flag));
for (int i=0;i<=1000000;i++) { father[i]=-1; son[i]=-1; }
scanf("%d",&n);
for (int i=1;i<=n;i++)
{
scanf("%d%d",&x,&y);
if (!flag[x]) { sta[h++]=x; flag[x]=1; }
if (!flag[y]) { sta[h++]=y; flag[y]=1; }
father[x]=y;
son[y]=x;
}
for (int i=0;i<h;i++)
{
if (father[sta[i]]==-1) u=sta[i];
if (son[sta[i]]==-1) v=sta[i];
}
int i=1;
while (i<=n)
{
q[i]=v;
v=father[v];
i+=2;
}
if (!n%2)
{
i=n;
while (i>0)
{
q[i]=u;
u=son[u];
i-=2;
}
}
else
{
i=2;
u=father[0];
while (i<=n)
{
q[i]=u;
u=father[u];
i+=2;
}
}
for (int i=1;i<=n;i++) printf("%d ",q[i]);
return 0;
}