codeforces 29C Mail Stamps(dfs)

来源:互联网 发布:微信怎么推广淘宝店 编辑:程序博客网 时间:2024/05/22 23:07

 Mail Stamps
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

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
21 100100 2
Output
2 100 1 
Input
33 1100 23 2
Output
100 2 3 1 

思路:因为这些数字大到可以达到10的九次方,但个数却不多,因此可以用map容器存储各个数字对应的位置,然后再用数组f[i]储存每个位置对应的数,用vector容器储存图的邻接表,方便访问。注意深搜时找到一条能够遍历到所有点的路径再输出,要用到回溯。

代码如下:

#include<cstdio>#include<iostream>#include<cstring>#include<map>#include<vector>using namespace std;map<int,int>m;//起到去重作用,并且解决了数组无法开大的问题,m[a]=pos。储存每个数在数组中的位置 vector<int>graph[100005];//相当于无向图的邻接表 int f[100005];//第i个数的值 bool vis[100005];int n;int dfs(int cur,int dep){if(dep==n+1){//如果这条路走得通,能够通过这条路访问到每一个数,就开始回溯输出 cout<<f[cur];return 1;}for(int i=0;i<graph[cur].size();i++){//尝试访问该点的每一个未被访问的邻接点 if(vis[graph[cur][i]]==0){vis[graph[cur][i]]=1;if(dfs(graph[cur][i],dep+1)){cout<<" "<<f[cur];return 1;   }}vis[graph[cur][i]]=0;//回溯 }}int main(){int i,j,a,b,pos;memset(vis,0,sizeof(vis));cin>>n;pos=0;for(i=0;i<n;i++){cin>>a>>b;if(m[a]==0){m[a]=++pos;f[pos]=a;}if(m[b]==0){m[b]=++pos;f[pos]=b;}graph[m[a]].push_back(m[b]);graph[m[b]].push_back(m[a]);}int start=1;for(i=1;i<=n+1;i++){if(graph[i].size()==1){start=i;break;}}//找到一个起点 vis[start]=1;dfs(start,1);//深搜 cout<<endl;return 0;}

1 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 练科目三很紧张怎么办 驾照学员卡丢了怎么办 驾考时考试的车系统出错怎么办 驾驶证超期6个月怎么办 北京汽车年检只有电子保单怎么办 交电费户号9位数怎么办 扬州驾照12分扣完了怎么办 有大专毕业证在深圳怎么办居住证 微信解释包错误怎么办 富士康离职不批怎么办 到了怀孕年龄找不到工作怎么办 建筑公司挂靠发生人员伤残怎么办 外地生小孩落北京户口怎么办 户籍档案查不到直系亲属关系怎么办 考过了二建注册怎么办 异地工作辞职回家档案怎么办 离职怎么办档案放在人才市场 人才房住了6年后怎么办 医保辞职后断了怎么办 社保断了生育险怎么办 深圳小产权房水电费纠纷怎么办 有公租房的再婚怎么办 廉租房被没收了怎么办 商铺到期房东不续租怎么办 天津集体户口买不起房怎么办 房东不想续租了怎么办 唯一住房卖掉后户口怎么办 杭州唯一住房卖掉后户口怎么办 唯一一套住房卖掉户口怎么办 房租押金条丢了怎么办 二建证书跟毕业证丢失怎么办 住宅房到70年怎么办 护照号变了机票怎么办 苹果se指纹坏了怎么办 月经推迟怎么办才能快点来 车载支架不粘了怎么办 otpc平板电脑无法开机怎么办 手表表轴掉了怎么办 鸡肉放冰箱臭了怎么办 鸡胸肉熟了腥怎么办 梦幻西游手游手机号换了怎么办