A10772 | Underground Lab
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
The first line contains three integers $n$ , $m$ , and $k$ ( $1<=n<=2·10^{5}$ , $n-1<=m<=2·10^{5}$ , $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 $x_{i}$ and $y_{i}$ ( $1<=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.
Each of the next $m$ lines contains two integers $x_{i}$ and $y_{i}$ ( $1<=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 $k$ lines. $i$ -th of these lines must start with an integer $c_{i}$ () — the number of vertices visited by $i$ -th clone, followed by $c_{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.
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted