307631: CF1385F. Removing Leaves
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:0
Description
Removing Leaves
题意翻译
给定一棵树,现在定义一次操作为"选定拥有同样父亲的$k$个叶节点,并将这$k$个叶节点一起删去"。请问,最多能够进行多少次操作。题目描述
You are given a tree (connected graph without cycles) consisting of $ n $ vertices. The tree is unrooted — it is just a connected undirected graph without cycles. In one move, you can choose exactly $ k $ leaves (leaf is such a vertex that is connected to only one another vertex) connected to the same vertex and remove them with edges incident to them. I.e. you choose such leaves $ u_1, u_2, \dots, u_k $ that there are edges $ (u_1, v) $ , $ (u_2, v) $ , $ \dots $ , $ (u_k, v) $ and remove these leaves and these edges. Your task is to find the maximum number of moves you can perform if you remove leaves optimally. You have to answer $ t $ independent test cases.输入输出格式
输入格式
The first line of the input contains one integer $ t $ ( $ 1 \le t \le 2 \cdot 10^4 $ ) — the number of test cases. Then $ t $ test cases follow. The first line of the test case contains two integers $ n $ and $ k $ ( $ 2 \le n \le 2 \cdot 10^5 $ ; $ 1 \le k < n $ ) — the number of vertices in the tree and the number of leaves you remove in one move, respectively. The next $ n-1 $ lines describe edges. The $ i $ -th edge is represented as two integers $ x_i $ and $ y_i $ ( $ 1 \le x_i, y_i \le n $ ), where $ x_i $ and $ y_i $ are vertices the $ i $ -th edge connects. It is guaranteed that the given set of edges forms a tree. It is guaranteed that the sum of $ n $ does not exceed $ 2 \cdot 10^5 $ ( $ \sum n \le 2 \cdot 10^5 $ ).
输出格式
For each test case, print the answer — the maximum number of moves you can perform if you remove leaves optimally.
输入输出样例
输入样例 #1
4
8 3
1 2
1 5
7 6
6 8
3 1
6 4
6 1
10 3
1 2
1 10
2 3
1 5
1 6
2 4
7 10
10 9
8 10
7 2
3 1
4 5
3 6
7 4
1 2
1 4
5 1
1 2
2 3
4 3
5 3
输出样例 #1
2
3
3
4