0
点赞
收藏
分享

微信扫一扫

POJ - 2230 Watchcow(欧拉回路)

七公子706 2022-01-26 阅读 42
图论算法

POJ - 2230 Watchcow(欧拉回路)

#include<cstdio>
#include<stack>
using namespace std;
const int N = 10010, M = 50010;
int h[N],e[M*2],ne[M*2],idx=1;
int n,m;
stack<int> s,ans;
void add(int a,int b)
{
	e[idx]=b;ne[idx]=h[a];h[a]=idx++;
}
void euler()
{
	s.push(1);
	while(!s.empty())
	{
		int x=s.top(),i=h[x];
		if(i)
		{
			h[x]=ne[i];
			s.push(e[i]);
		}
		else
		{
			ans.push(x);
			s.pop();
		}
	}
}
int main()
{
	scanf("%d%d",&n,&m); 
	for(int i=1;i<=m;i++)
	{
		int a,b;scanf("%d%d",&a,&b);
		add(a,b);add(b,a);
	}
	euler();
	while(!ans.empty())
	{
		printf("%d\n",ans.top());
		ans.pop();
	}
	return 0;
}
举报

相关推荐

0 条评论