Mail Stamps CodeForces - 29C(离散化+dfs)

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.

Examples
Input
2
1 100
100 2
Output
2 100 1
Input
3
3 1
100 2
3 2
Output
100 2 3 1
题意很简单,就是给你一张图,输出一条路径,里面包括所有的点一次且仅有一次。
点不是连续的,我们需要离散化一下。之后就dfs找路径就可以了。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxx=2e5+100;
struct node{
	int x,y;
}p[maxx];
struct edge{
	int to,next;
}e[maxx<<1];
int head[maxx<<1];
int in[maxx];
int vis[maxx],a[maxx];
int n,tot,ans[maxx];
/*-----------事前准备-----------*/
inline void init()
{
	memset(head,-1,sizeof(head));
	tot=0;
}
inline void add(int u,int v)
{
	e[tot].to=v,e[tot].next=head[u],head[u]=tot++;
}
/*-----------dfs-----------*/
inline void dfs(int u,int cnt)
{
	vis[u]=1;
	for(int i=head[u];i!=-1;i=e[i].next)
	{
		int to=e[i].to;
		if(vis[to]) continue;//走过的点不重复走。
		ans[cnt]=a[to];
		dfs(to,cnt+1);
	}
}
int main()
{
	int cnt=0,x,y;
	scanf("%d",&n);init();
	for(int i=1;i<=n;i++)
	{
		scanf("%d%d",&x,&y);
		p[i].x=x;p[i].y=y;
		a[++cnt]=x,a[++cnt]=y;
	}
	sort(a+1,a+1+cnt);
	int len=unique(a+1,a+1+cnt)-a-1;
	for(int i=1;i<=n;i++)
	{
		p[i].x=lower_bound(a+1,a+1+len,p[i].x)-a;
		p[i].y=lower_bound(a+1,a+1+len,p[i].y)-a;//离散化之后连边
		add(p[i].x,p[i].y);
		add(p[i].y,p[i].x);
		in[p[i].x]++;in[p[i].y]++;
	}
	int i;
	for(i=1;i<=len;i++)
	{
		if(in[i]==1) break;
	}
	ans[1]=a[i];
	dfs(i,2);
	for(int i=1;i<=len;i++) cout<<ans[i]<<" ";
	cout<<endl;
	return 0;
}

努力加油a啊,(o)/~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

starlet_kiss

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值