前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforce 263D Cycle in Graph 搜索 图论 哈密尔顿环

Codeforce 263D Cycle in Graph 搜索 图论 哈密尔顿环

作者头像
风骨散人Chiam
发布2020-10-28 10:20:39
3830
发布2020-10-28 10:20:39
举报
文章被收录于专栏:CSDN旧文

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 nmk (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 aibi (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.

Examples

input

Copy

代码语言:javascript
复制
3 3 2
1 2
2 3
3 1

output

Copy

代码语言:javascript
复制
3
1 2 3 

input

Copy

代码语言:javascript
复制
4 6 3
4 3
1 2
1 3
1 4
2 3
2 4

output

Copy

代码语言:javascript
复制
4
3 4 1 2 

做这个题,我一开始想的是floyd求最小环,dijkstra求最小环,但是,到后来我发现,数据量太大,而且这个题之说找到大于K的环,便搁置了一下,太难了,后来想到了哈密尔顿,不就一个搜索题,比哈密尔顿路还简单,搜一个回路,并且记录路径,搜到重复点,就是回路,路径点大于K,就是要的答案,直接交,ojbk。

代码语言:javascript
复制
#include<iostream>
#include<queue>
#include<algorithm>
#include<set>
#include<cmath>
#include<vector>
#include<map>
#include<stack>
#include<bitset>
#include<cstdio>
#include<cstring>
//---------------------------------Sexy operation--------------------------//

#define cini(n) scanf("%d",&n)
#define cinl(n) scanf("%lld",&n)
#define cinc(n) scanf("%c",&n)
#define cins(s) scanf("%s",s)
#define coui(n) printf("%d",n)
#define couc(n) printf("%c",n)
#define coul(n) printf("%lld",n)
#define speed ios_base::sync_with_stdio(0)
#define file  freopen("input.txt","r",stdin);freopen("output.txt","w",stdout)
//-------------------------------Actual option------------------------------//

#define Swap(a,b) a^=b^=a^=b
#define Max(a,b) a>b?a:b
#define Min(a,b) a<b?a:b
#define mem(n,x) memset(n,x,sizeof(n))
#define mp(a,b) make_pair(a,b)
//--------------------------------constant----------------------------------//

#define INF  0x3f3f3f3f
#define maxn  100005
#define esp  1e-9
using namespace std;
typedef long long ll;
typedef pair<int,int> PII;
//------------------------------Dividing Line--------------------------------//
vector<int> ege[maxn],ans;
int vis[maxn];
int n,m,k,cnt;
bool dfs(int u)
{
    vis[u]=++cnt;
    ans.push_back(u);
    for(int i=0;i<ege[u].size();i++)
    {
        int v=ege[u][i];
        if(vis[v])
        {
            if(cnt-vis[v]<k) continue;
            cout<<vis[u]-vis[v]+1<<endl;
            for(int i=vis[v];i<=vis[u];i++) cout<<ans[i-1]<<' ';
            return puts(""),1;
        }
        if(dfs(v))return 1;
    }
    return 0;
}
int main()
{
    cin>>n>>m>>k;
    for(int i=0;i<m;i++)
    {
        int x,y;
        cini(x),cini(y);
        ege[x].push_back(y);
        ege[y].push_back(x);
    }
    dfs(1);
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/08/22 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档