Update appNew update is available. Click here to update.
Last Updated: 13 Mar, 2021
Roots of the tree having minimum height
Moderate
Problem statement

You are given an undirected Tree having 'N' nodes. The nodes are numbered from 1 to 'N'. Your task is to find the sorted list of all such nodes, such that rooting the tree on that node gives the minimum height possible of the given tree.

A tree is a connected acyclic graph. The height of a rooted tree is the maximum value of the distance between the root and all nodes of the tree.

Input Format:
The first line of the input contains an integer, 'T,’ denoting the number of test cases.

The first line of each test case contains an integer, 'N,’ denoting the number of nodes.

The next β€˜N’-1 lines of each test case contain two space-separated integers, β€˜X’ and β€˜Y’ separated by a single space, β€˜X’ and ’Y’ denote the two nodes connected by an undirected edge.
Output Format:
For each test case, return the list of all such nodes such that rooting the tree on that node gives the minimum height possible. 

Return all the nodes in a sorted manner.
Note :
You do not need to print anything. It has already been taken care of. Just implement the given function.
Constraints:
1 <= T <= 10
1 <= N <= 10^5 
1 <= X,Y <= N

The input edges form a tree.

Time limit: 1 sec
Approaches

01Approach

The idea is to iterate through all the nodes one by one, select that node as the root of the tree and find the height of the formed tree. We will also maintain a list of nodes that gives the minimum height. Whenever we find a node that gives a minimum height, we will clear our list and that node to the list and update the minimum height that we have found till now. If a node gives the same height as the minimum height, then we will add that node to our output list. Note that we will ignore all nodes that give greater height than minimum height. To find the height of a rooted tree we can use Depth First Search (DFS) or Breadth First Search (BFS).

 

Steps: 

  1. Let 'MIN_HEIGHT' be a variable that stores the minimum height of the tree which we can get. Initialize it as INT_MAX.
  2. Let 'ROOT_LIST' be a list of nodes that gives the minimum height.
  3. Iterate through β€˜i’ = 1 to β€˜N’ 
    • Let 'HEIGHT' be the height of the tree rooted at Node i.
    • If 'MIN_HEIGHT' is greater than 'HEIGHT', then
      • Set 'MIN_HEIGHT' as 'HEIGHT'.
      • Clear the 'ROOT_LIST' array
      • Add β€˜i’ to the 'ROOT_LIST' array.
    • Otherwise, if 'HEIGHT' is equal to 'MIN_HEIGHT', then
      • Add β€˜i’ to the 'ROOT_LIST' array.
  4. Return the array 'ROOT_LIST'.