POJ 2230 Watchcow (欧拉路径 dfs 邻接表)

来源:互联网 发布:天津网络推广优化 编辑:程序博客网 时间:2024/05/18 02:50

Description

Bessie's been appointed the new watch-cow for the farm. Every night, it's her job to walk across the farm and make sure that no evildoers are doing any evil. She begins at the barn, makes her patrol, and then returns to the barn when she's done. 

If she were a more observant cow, she might be able to just walk each of M (1 <= M <= 50,000) bidirectional trails numbered 1..M between N (2 <= N <= 10,000) fields numbered 1..N on the farm once and be confident that she's seen everything she needs to see. But since she isn't, she wants to make sure she walks down each trail exactly twice. It's also important that her two trips along each trail be in opposite directions, so that she doesn't miss the same thing twice. 

A pair of fields might be connected by more than one trail. Find a path that Bessie can follow which will meet her requirements. Such a path is guaranteed to exist.

Input

* Line 1: Two integers, N and M. 

* Lines 2..M+1: Two integers denoting a pair of fields connected by a path.

Output

* Lines 1..2M+1: A list of fields she passes through, one per line, beginning and ending with the barn at field 1. If more than one solution is possible, output any solution.

Sample Input

4 51 21 42 32 43 4

Sample Output

12342143241

题意:Bessie要求从第一个农场巡视到最后一个农场,而且要求每条路要走两遍,并且这两遍必须是不同的方向。

这是一道有向图输出欧拉路径的问题,用dfs回溯,记录点的序号,就可以得到整条欧拉回路的点序列。





这个题就是邻接表理解好就可以了

1(-1):2(0)4(2)

2(-1):1(1)3(4)4(6)

3(-1):2(5)4(8)

4(-1):1(3)2(7)3(9)


括号里代表的是编号 。

struct 

{

int to,next; ///to 标号指向的数字 next 代表前一位的位置 

}

head 【i】 /// 位置

#include<stdio.h>#include<string.h>using namespace std;int n,m;int len;int head[10000003];int vis[1000003];int res[10000003];int num=0;struct data{    int to,next;}a[1000003];void addedge(int x,int y){    a[len].to=y;    a[len].next=head[x];    head[x]=len++;}void dfs(int u){    for(int i=head[u];i!=-1;i=a[i].next)    {        if(vis[i])        {            vis[i]=0;            dfs(a[i].to);        }    }    printf("%d\n",u);}int main(){    while(scanf("%d%d",&n,&m)==2)    {        num=len=0;        memset(head,-1,sizeof(head));        memset(vis,1,sizeof(vis));        for(int i = 1;i <= m;i++)        {            int x,y;            scanf("%d%d",&x,&y);            addedge(x,y);            addedge(y,x);        }        dfs(1);    }}



原创粉丝点击