1 Answers
Option 3 : Both I and II
Concept:
A minimum spanning tree (MST) or minimum weight spanning tree is a subset of the edges(V – 1 ) of a connected, edge-weighted undirected graph G(V, E) that connects all the vertices together, without any cycles and with the minimum possible total edge weight.
Example:
Graph G(V, E)
[ alt="GATE CS 112 7Q GATE 2019 images raju D 1" src="//storage.googleapis.com/tb-img/production/19/11/GATE_CS_112_7Q_GATE_2019_images_raju_D%201.PNG">
G(V, V – 1) → minimum spanning tree
[ alt="GATE CS 112 7Q GATE 2019 images raju D 2" src="//storage.googleapis.com/tb-img/production/19/11/GATE_CS_112_7Q_GATE_2019_images_raju_D%202.PNG" style="width: 146px; height: 114px;">
If edge weights are distinct then there exist unique MST.
Hence option 1 is correct
Theorem:
If for every cut of a graph there is a unique light edge crossing the cut then the graph has a unique minimum spanning tree, but converse may not be true.