CF780E.Underground Lab

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn vertices and mm edges. kk 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.

输入格式

The first line contains three integers nn , mm , and kk ( 1<=n<=21051<=n<=2·10^{5} , n1<=m<=2105n-1<=m<=2·10^{5} , 1<=k<=n1<=k<=n ) — the number of vertices and edges in the lab, and the number of clones.

Each of the next mm lines contains two integers xix_{i} and yiy_{i} ( 1<=xi,yi<=n1<=x_{i},y_{i}<=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.

输出格式

You should print kk lines. ii -th of these lines must start with an integer cic_{i} () — the number of vertices visited by ii -th clone, followed by cic_{i} 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.

输入输出样例

  • 输入#1

    3 2 1
    2 1
    3 1
    

    输出#1

    3 2 1 3
    
  • 输入#2

    5 4 2
    1 2
    1 3
    1 4
    1 5
    

    输出#2

    3 2 1 3
    3 4 1 5

说明/提示

In the first sample case there is only one clone who may visit vertices in order (2, 1, 3), which fits the constraint of 6 vertices per clone.

In the second sample case the two clones can visited vertices in order (2, 1, 3) and (4, 1, 5), which fits the constraint of 5 vertices per clone.

首页