码迷,mamicode.com
首页 > 其他好文 > 详细

CF29C map

时间:2015-01-27 20:25:24      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

http://codeforces.com/problemset/problem/29/C

Description

One day Bob got a letter in an envelope. Bob knows that when Berland‘s post officers send a letter directly from city ?A? to city ?B?, they stamp it with ?A B?, or ?B A?. Unfortunately, often it is impossible to send a letter directly from the city of the sender to the city of the receiver, that‘s why the letter is sent via some intermediate cities. Post officers never send a letter in such a way that the route of this letter contains some city more than once. Bob is sure that the post officers stamp the letters accurately.

There are n stamps on the envelope of Bob‘s letter. He understands that the possible routes of this letter are only two. But the stamps are numerous, and Bob can‘t determine himself none of these routes. That‘s why he asks you to help him. Find one of the possible routes of the letter.

Input

The first line contains integer n (1?≤?n?≤?105) — amount of mail stamps on the envelope. Then there follow n lines with two integers each — description of the stamps. Each stamp is described with indexes of the cities between which a letter is sent. The indexes of cities are integers from 1 to 109. Indexes of all the cities are different. Every time the letter is sent from one city to another, exactly one stamp is put on the envelope. It is guaranteed that the given stamps correspond to some valid route from some city to some other city.

Output

Output n?+?1 numbers — indexes of cities in one of the two possible routes of the letter.

Sample Input

Input
2
1 100
100 2
Output
2 100 1 
Input
3
3 1
100 2
3 2
Output
100 2 3 1 
/**
CF 29C map
题目大意:给定一些无向边,沿着边遍历所有点一遍,不许重复,不许遗漏;
解题思路:点在1~1e9不能用数组,总共才1e5个,可以用map映射一下
**/
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <iostream>
#include <map>
using namespace std;
int n,flag;
int a[100005][2];
int main()
{
    while(~scanf("%d",&n))
    {
        map<int,int>mp1,mp2;
        for(int i=0; i<n; i++)
        {
            int u,v;
            scanf("%d%d",&a[i][0],&a[i][1]);
            u=a[i][0];
            v=a[i][1];
            if(mp1[u]==0)
                mp1[u]=v;
            else
                mp2[u]=v;
            if(mp1[v]==0)
                mp1[v]=u;
            else
                mp2[v]=u;
         //   printf("%d %d\n",mp1[u],mp2[u]);
           // printf("%d %d\n",mp1[v],mp2[v]);
        }
        for(int i=0;i<n;i++)
        {
            int u=a[i][0];
            int v=a[i][1];
            if(mp2[u]==0)
            {
                flag=u;
                break;
            }
            if(mp2[v]==0)
            {
                flag=v;
                break;
            }
        }
        int k=flag,t;
        if(mp1[flag]!=0)
        {
            t=mp1[flag];
            mp1[flag]=0;
            flag=t;
        }
        else
        {
            t=mp2[flag];
            mp2[flag]=0;
            flag=t;
        }
        if(mp1[flag]==k)
            mp1[flag]=0;
        if(mp2[flag]==k)
            mp2[flag]=0;
        printf("%d",k);
        while(mp1[flag]||mp2[flag])
        {
            printf(" %d",flag);
            if(mp1[flag]!=0)
            {
                t=mp1[flag];
                mp1[flag]=0;
                if(mp1[t]==flag)
                    mp1[t]=0;
                if(mp2[t]==flag)
                    mp2[t]=0;
                flag=t;
            }
            else
            {
                t=mp2[flag];
                mp2[flag]=0;
                if(mp1[t]==flag)
                    mp1[t]=0;
                if(mp2[t]==flag)
                    mp2[t]=0;
                flag=t;
            }
        }
        printf(" %d\n",flag);
    }
    return 0;
}


CF29C map

标签:

原文地址:http://blog.csdn.net/lvshubao1314/article/details/43198443

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!