retagged by
3,565 views
29 votes
29 votes

Consider the following undirected connected graph $G$ with weights on its edges as given in the figure below. A minimum spanning tree is a spanning tree of least weight and a maximum spanning tree is one with largest weight. A second best minimum spanning tree whose weight is the smallest among all spanning trees that are not minimum spanning trees in $G$.

Which of the following statements is TRUE in the above graph? (Note that all the edge weights are distinct in the above graph)

  1. There is more than one minimum spanning tree and similarly, there is more than one maximum spanning tree here.
  2. There is a unique minimum spanning tree, however there is more than one maximum spanning tree here.
  3. There is more than one minimum spanning tree, however there is a unique maximum spanning tree here.
  4. There is more than one minimum spanning tree and similarly, there is more than one second-best minimum spanning tree here.
  5. There is unique minimum spanning tree, however there is more than one second-best minimum spanning tree here.
retagged by

2 Answers

Best answer
30 votes
30 votes

In the graph we have all edge weights are distinct so we will get unique minimum and maximum spanning tree.
Each Cycle must exclude maximum weight edge in minimum spanning tree.
Here, we have two cycle of $3$ edges, $a-d-e$ and $c-g-k.$
For second best minimum spanning tree, exclude $a-e$ edge and include $d-e$ edge

Other way for second best minimum spanning tree: exclude $c-g$ edge and include $g-k$ edge.

So, e should be the answer.

edited by
5 votes
5 votes
Since, all the edge weights are distinct, we have a unique minimum weight spanning tree and maximum weight spanning tree.
And we can have more than one second best minimum spanning tree because different combinations of edge may give second largest value.

You can also try finding MinST and MaxST from the given graph.

Hence, option 'e' is only possible.
Answer:

Related questions