A13596 | Village (Minimum)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This problem is split into two tasks. In this task, you are required to find the minimum possible answer. In the task Village (Maximum) you are required to find the maximum possible answer. Each task is worth $50$ points.
There are $N$ houses in a certain village. A single villager lives in each of the houses. The houses are connected by roads. Each road connects two houses and is exactly $1$ kilometer long. From each house it is possible to reach any other using one or several consecutive roads. In total there are $N-1$ roads in the village.
One day all villagers decided to move to different houses — that is, after moving each house should again have a single villager living in it, but no villager should be living in the same house as before. We would like to know the smallest possible total length in kilometers of the shortest paths between the old and the new houses for all villagers.
Example village with seven houses
For example, if there are seven houses connected by roads as shown on the figure, the smallest total length is $8$ km (this can be achieved by moving $1 \to 6$ , $2 \to 4$ , $3 \to 1$ , $4 \to 2$ , $5 \to 7$ , $6 \to 3$ , $7 \to 5$ ).
Write a program that finds the smallest total length of the shortest paths in kilometers and an example assignment of the new houses to the villagers.
There are $N$ houses in a certain village. A single villager lives in each of the houses. The houses are connected by roads. Each road connects two houses and is exactly $1$ kilometer long. From each house it is possible to reach any other using one or several consecutive roads. In total there are $N-1$ roads in the village.
One day all villagers decided to move to different houses — that is, after moving each house should again have a single villager living in it, but no villager should be living in the same house as before. We would like to know the smallest possible total length in kilometers of the shortest paths between the old and the new houses for all villagers.
Example village with seven houses
For example, if there are seven houses connected by roads as shown on the figure, the smallest total length is $8$ km (this can be achieved by moving $1 \to 6$ , $2 \to 4$ , $3 \to 1$ , $4 \to 2$ , $5 \to 7$ , $6 \to 3$ , $7 \to 5$ ).
Write a program that finds the smallest total length of the shortest paths in kilometers and an example assignment of the new houses to the villagers.
输入格式
The first line contains an integer $N$ ( $1 < N \le 10^5$ ). Houses are numbered by consecutive integers $1, 2, \ldots, N$ .
Then $N-1$ lines follow that describe the roads. Each line contains two integers $a$ and $b$ ( $1 \le a, b \le N$ , $a \neq b$ ) denoting that there is a road connecting houses $a$ and $b$ .
Then $N-1$ lines follow that describe the roads. Each line contains two integers $a$ and $b$ ( $1 \le a, b \le N$ , $a \neq b$ ) denoting that there is a road connecting houses $a$ and $b$ .
输出格式
In the first line output the smallest total length of the shortest paths in kilometers.
In the second line describe one valid assignment of the new houses with the smallest total length: $N$ space-separated distinct integers $v_1, v_2, \ldots, v_N$ . For each $i$ , $v_i$ is the house number where the villager from the house $i$ should move ( $v_i \neq i$ ). If there are several valid assignments, output any of those.
Scoring
Subtasks:
1. (6 points) $N \leq 10$
2. (19 points) $N \leq 1\,000$
3. (25 points) No further constraints
In the second line describe one valid assignment of the new houses with the smallest total length: $N$ space-separated distinct integers $v_1, v_2, \ldots, v_N$ . For each $i$ , $v_i$ is the house number where the villager from the house $i$ should move ( $v_i \neq i$ ). If there are several valid assignments, output any of those.
Scoring
Subtasks:
1. (6 points) $N \leq 10$
2. (19 points) $N \leq 1\,000$
3. (25 points) No further constraints
输入输出样例
输入 #1
4 1 2 2 3 3 4
输出 #1
4 2 1 4 3
输入 #2
7 4 2 5 7 3 4 6 3 1 3 4 5
输出 #2
8 3 4 6 2 7 1 5
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted