Levels of a tree

2.4

7 votes
Algorithms, Graphs
Problem

You are given a tree that consists of vertex. In this tree, vertex 1 is the root vertex. Here, is defined as a set of vertex where the distance of the vertexes from the root vertex is equal to

You are required to remove at most  levels of the tree in such a manner that after removing the vertexes, the maximum size of the recently-created components is minimum. 

Input format

  • First line: Two integers n, k denoting the number of nodes in the tree and maximum number of removed levels ()
  • Next line: space-separated integers where the integers is  and it denotes the parent of vertex ()

Output format

Print the required number.

Sample Input
13 1
1 2 3 4 5 1 7 8 9 1 10 1
Sample Output
4
Time Limit: 5
Memory Limit: 256
Source Limit:
Explanation

In this test if we remove level 1, it creates componenets with sizes {1, 1, 3, 4}. but if we remove another levels it creates components with a size of bigger than 4. so the answer is 4.

Editor Image

?