A12549 | Privatization of Roads in Treeland
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Treeland consists of $n$ cities and $n-1$ roads. Each road is bidirectional and connects two distinct cities. From any city you can get to any other city by roads. Yes, you are right — the country's topology is an undirected tree.
There are some private road companies in Treeland. The government decided to sell roads to the companies. Each road will belong to one company and a company can own multiple roads.
The government is afraid to look unfair. They think that people in a city can consider them unfair if there is one company which owns two or more roads entering the city. The government wants to make such privatization that the number of such cities doesn't exceed $k$ and the number of companies taking part in the privatization is minimal.
Choose the number of companies $r$ such that it is possible to assign each road to one company in such a way that the number of cities that have two or more roads of one company is at most $k$ . In other words, if for a city all the roads belong to the different companies then the city is good. Your task is to find the minimal $r$ that there is such assignment to companies from $1$ to $r$ that the number of cities which are not good doesn't exceed $k$ .
The picture illustrates the first example ( $n=6, k=2$ ). The answer contains $r=2$ companies. Numbers on the edges denote edge indices. Edge colors mean companies: red corresponds to the first company, blue corresponds to the second company. The gray vertex (number $3$ ) is not good. The number of such vertices (just one) doesn't exceed $k=2$ . It is impossible to have at most $k=2$ not good cities in case of one company.
There are some private road companies in Treeland. The government decided to sell roads to the companies. Each road will belong to one company and a company can own multiple roads.
The government is afraid to look unfair. They think that people in a city can consider them unfair if there is one company which owns two or more roads entering the city. The government wants to make such privatization that the number of such cities doesn't exceed $k$ and the number of companies taking part in the privatization is minimal.
Choose the number of companies $r$ such that it is possible to assign each road to one company in such a way that the number of cities that have two or more roads of one company is at most $k$ . In other words, if for a city all the roads belong to the different companies then the city is good. Your task is to find the minimal $r$ that there is such assignment to companies from $1$ to $r$ that the number of cities which are not good doesn't exceed $k$ .
The picture illustrates the first example ( $n=6, k=2$ ). The answer contains $r=2$ companies. Numbers on the edges denote edge indices. Edge colors mean companies: red corresponds to the first company, blue corresponds to the second company. The gray vertex (number $3$ ) is not good. The number of such vertices (just one) doesn't exceed $k=2$ . It is impossible to have at most $k=2$ not good cities in case of one company.
输入格式
The first line contains two integers $n$ and $k$ ( $2 \le n \le 200000, 0 \le k \le n - 1$ ) — the number of cities and the maximal number of cities which can have two or more roads belonging to one company.
The following $n-1$ lines contain roads, one road per line. Each line contains a pair of integers $x_i$ , $y_i$ ( $1 \le x_i, y_i \le n$ ), where $x_i$ , $y_i$ are cities connected with the $i$ -th road.
The following $n-1$ lines contain roads, one road per line. Each line contains a pair of integers $x_i$ , $y_i$ ( $1 \le x_i, y_i \le n$ ), where $x_i$ , $y_i$ are cities connected with the $i$ -th road.
输出格式
In the first line print the required $r$ ( $1 \le r \le n - 1$ ). In the second line print $n-1$ numbers $c_1, c_2, \dots, c_{n-1}$ ( $1 \le c_i \le r$ ), where $c_i$ is the company to own the $i$ -th road. If there are multiple answers, print any of them.
输入输出样例
输入 #1
6 2 1 4 4 3 3 5 3 6 5 2
输出 #1
2 1 2 1 1 2
输入 #2
4 2 3 1 1 4 1 2
输出 #2
1 1 1 1
输入 #3
10 2 10 3 1 2 1 3 1 4 2 5 2 6 2 7 3 8 3 9
输出 #3
3 1 1 2 3 2 3 1 3 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted