Description
Solutions
Find Min Distance to Furthest Node (Google Tokyo)
🤘 INTERN📚RELATED PROBLEMS
You are given a tree-shaped undirected graph consisting of n
nodes labeled 1...n
and n-1
edges. The i-th edge connects nodes edges[i][0]
and edges[i][1]
together.
For a node x
in the tree, let d(x)
be the distance (the number of edges) from x
to its farthest node. Find the min value of d(x)
for the given tree.
The tree has the following properties:
x
and y
in the tree, there's exactly 1 path connecting x
and y
.Function Description
Complete the function findMinDistanceToFurthestNode
in the editor.
findMinDistanceToFurthestNode
has the following parameters:
int n
: the number of nodesint edges[n-1][2]
: an array ofn-1
edges where eachedges[i]
contains two integers representing an edge connecting the nodes
Returns
int: the minimum distance to the furthest node
Example 1:

Input: n = 6, edges = [[1, 4], [2, 3], [3, 4], [4, 5], [5, 6]]
Output: 2
Explanation:No explanation available.
Example 2:

Input: n = 6, edges = [[1, 3], [4, 5], [5, 6], [3, 2], [3, 4]]
Output: 2
Explanation:No explanation available.
Example 3:

Input: n = 2, edges = [[1, 2]]
Output: 1
Explanation:No explanation available.
Example 4:

Input: n = 10, edges = [[1, 2], [2, 3], [3, 4], [4, 5], [5, 6], [6, 7], [7, 8], [8, 9], [9, 10]]
Output: 5
Explanation:No explanation available.
Example 5:

Input: n = 10, edges = [[7, 8], [7, 9], [4, 5], [1, 3], [3, 4], [6, 7], [4, 6], [2, 3], [9, 10]]
Output: 3
Explanation:No explanation available.
Constraints:
You can assume that input is alwasy valid and satisfies all constraints.

Related Problems
Testcase
Result
Case 1
input:
output: