Cycle in Graph (coder)

找到一个大于K的没有重复的圈。


思路:用的是深搜,一开始我就只是单纯的试着从1开始。但是wrong了,这样很快想到了反例,


   就是把每一个点作为起始点开始搜就可以了,直到搜到满足要求的序列。用pre来记录其排序。


#include<cstdio>
#include<iostream>
#include<cstring>
#include<queue>
#include<ctype.h>
#include<set>
#include<cstdlib>
using namespace std;


#define N 100010

int go[2*N][2];
int n;
bool ok=true;
int ans[N];
bool b[N];

int main()
{
	freopen("c:\in.txt","r",stdin);

	int i,j,k;

	cin>>n;
	k=2*n;
	
	memset(go,0,sizeof(go));
	while (k--)
	{
		scanf("%d%d",&i,&j);
		if (go[i][0])
		{
			if (go[i][1])
				ok=false;
			go[i][1]=j;
		}
		else
			go[i][0]=j;
	}

	j=1;
	i=1;
	int temp=n;
	ans[i]=j;
	while (temp--)
	{
		i++;
		//cout<<j<<' '<<go[j][0]<<' '<<go[j][1]<<' '<<go[go[j][0]][0]<<' '<<go[go[j][0]][1]<<endl;
		if (go[go[j][0]][0]==go[j][1] || go[go[j][0]][1]==go[j][1])
		{

			ans[i]=j=go[j][0];
		}
		else if (go[go[j][1]][0]==go[j][0] || go[go[j][1]][1]==go[j][0])
		{
			ans[i]=j=go[j][1];
		}
		else
			ok=false;
	}

	for (i=1;i<5;i++)
		ans[n+i]=ans[i];
	
	for (i=1;i<=n;i++)
	{
		if ( (go[ans[i]][0]==ans[i+1] && go[ans[i]][1]==ans[i+2]) || (go[ans[i]][0]==ans[i+2] && go[ans[i]][1]==ans[i+1]) )
			;
		else
			ok=false;
	}

	memset(b,false,sizeof(b));
	for (i=1;i<=n;i++)
	{
		if (b[ans[i]])
			ok=false;
		b[ans[i]]=true;
	}

	if (ok)
	{
		for (i=1;i<=n;i++)
			printf("%d ",ans[i]);
		printf("\n");
	}
	else
		printf("-1\n");

	return 0;
}

D. Cycle in Graph
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You've got a undirected graph G, consisting of n nodes. We will consider the nodes of the graph indexed by integers from 1 to n. We know that each node of graph G is connected by edges with at least k other nodes of this graph. Your task is to find in the given graph a simple cycle of length of at least k + 1.

A simple cycle of length d (d > 1) in graph G is a sequence of distinct graph nodes v1, v2, ..., vd such, that nodes v1 and vd are connected by an edge of the graph, also for any integer i (1 ≤ i < d) nodes vi and vi + 1 are connected by an edge of the graph.

Input

The first line contains three integers n, m, k (3 ≤ n, m ≤ 105; 2 ≤ k ≤ n - 1) — the number of the nodes of the graph, the number of the graph's edges and the lower limit on the degree of the graph node. Next m lines contain pairs of integers. The i-th line contains integers ai, bi (1 ≤ ai, bi ≤ nai ≠ bi) — the indexes of the graph nodes that are connected by the i-th edge.

It is guaranteed that the given graph doesn't contain any multiple edges or self-loops. It is guaranteed that each node of the graph is connected by the edges with at least k other nodes of the graph.

Output

In the first line print integer r (r ≥ k + 1) — the length of the found cycle. In the next line print r distinct integers v1, v2, ..., vr (1 ≤ vi ≤ n) — the found simple cycle.

It is guaranteed that the answer exists. If there are multiple correct answers, you are allowed to print any of them.

Sample test(s)
Input
3 3 2
1 2
2 3
3 1
Output
3
1 2 3 
Input
4 6 3
4 3
1 2
1 3
1 4
2 3
2 4
Output
4
3 4 1 2 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值