【Codeforces Round #403】Codeforces 781C Underground Lab

The evil Bumbershoot corporation produces clones for gruesome
experiments in a vast underground lab. On one occasion, the corp
cloned a boy Andryusha who was smarter than his comrades. Immediately
Andryusha understood that something fishy was going on there. He
rallied fellow clones to go on a feud against the evil corp, and they
set out to find an exit from the lab. The corp had to reduce to
destroy the lab complex.

The lab can be pictured as a connected graph with n vertices and m
edges. k clones of Andryusha start looking for an exit in some of the
vertices. Each clone can traverse any edge once per second. Any number
of clones are allowed to be at any vertex simultaneously. Each clone
is allowed to stop looking at any time moment, but he must look at his
starting vertex at least. The exit can be located at any vertex of the
lab, hence each vertex must be visited by at least one clone.

Each clone can visit at most vertices before the lab explodes.

Your task is to choose starting vertices and searching routes for the
clones. Each route can have at most vertices. Input

The first line contains three integers n, m, and k (1 ≤ n ≤ 2·105,
n - 1 ≤ m ≤ 2·105, 1 ≤ k ≤ n) — the number of vertices and edges in
the lab, and the number of clones.

Each of the next m lines contains two integers xi and yi
(1 ≤ xi, yi ≤ n) — indices of vertices connected by the respective
edge. The graph is allowed to have self-loops and multiple edges.

The graph is guaranteed to be connected. Output

You should print k lines. i-th of these lines must start with an
integer ci () — the number of vertices visited by i-th clone, followed
by ci integers — indices of vertices visited by this clone in the
order of visiting. You have to print each vertex every time it is
visited, regardless if it was visited earlier or not.

It is guaranteed that a valid answer exists.

如果只有一个人怎么走?这不就是欧拉序,经过点数是 2n1
k <script type="math/tex" id="MathJax-Element-27">k</script>个人呢?你把一个人的路径拆开不就行了。

#include<cstdio>
#include<algorithm>
using namespace std;
int fir[200010],ne[400010],to[400010],vis[200010],f[400010],num[200010],
n,m,k,clo;
void add(int num,int u,int v)
{
    ne[num]=fir[u];
    fir[u]=num;
    to[num]=v;
}
void dfs(int u)
{
    int v;
    f[++clo]=u;
    vis[u]=1;
    for (int i=fir[u];i;i=ne[i])
        if (!vis[v=to[i]])
        {
            dfs(v);
            f[++clo]=u;
        }
}
int main()
{
    int x,y;
    scanf("%d%d%d",&n,&m,&k);
    for (int i=1;i<=m;i++)
    {
        scanf("%d%d",&x,&y);
        add(i*2,x,y);
        add(i*2+1,y,x);
    }
    dfs(1);
    for (int i=1;i<=k;i++) num[i]=(2*n-1)/k;
    for (int i=1;i<=(2*n-1)%k;i++) num[i]++;
    for (int i=1,j=1;i<=k;i++)
    {
        printf("%d ",num[i]);
        while (num[i]--) printf("%d ",f[j++]);
        putchar('\n');
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值