For a very sparse connected graph G = (V, E), we can further improve upon the O(E

Question:

For a very sparse connected graph G = (V, E), we can further improve upon the O(E + V lg V) running time of Prim's algorithm with Fibonacci heaps by preprocessing G to decrease the number of vertices before running Prim's algorithm. In particular, we choose, for each vertex u, the minimum-weight edge (u, ?) incident on u, and we put (u, ?) into the minimum spanning tree under construction. We then contract all chosen edges (see Section B.4). Rather than contracting these edges one at a time, we first identify sets of vertices that are united into the same new vertex. Then we create the graph that would have resulted from contracting these edges one at a time, but we do so by "renaming" edges according to the sets into which their endpoints were placed. Several edges from the original graph may be renamed the same as each other. In such a case, only one edge results, and its weight is the minimum of the weights of the corresponding original edges.

Initially, we set the minimum spanning tree T being constructed to be empty, and for each edge (u, ?) ? E, we initialize the attributes (u, ?).orig = (u, ?) and (u, ?). c = w(u, ?). We use the orig attribute to reference the edge from the initial graph that is associated with an edge in the contracted graph. The c attribute holds the weight of an edge, and as edges are contracted, we update it according to the above scheme for choosing edge weights. The procedure MST-REDUCE takes inputs G and T, and it returns a contracted graph G? with updated attributes orig? and c?. The procedure also accumulates edges of G into the minimum spanning tree T.

MST-REDUCE?(G, T)

image

a. Let T be the set of edges returned by MST-REDUCE, and let A be the minimum spanning tree of the graph G? formed by the call MST-PRIM (G?, c?, r), where c? is the weight attribute on the edges of G?.E and r is any vertex in G?.V. Prove that T ? {(x, y).orig? : (x, y) ? A} is a minimum spanning tree of G.

b. Argue that |G?. V| ? ?|V|/2.

c.?Show how to implement MST-REDUCE?so that it runs in?O(E)?time.

d. Suppose that we run k phases of MST-REDUCE, using the output G? produced by one phase as the input G to the next phase and accumulating edges in T.

Argue that the overall running time of the?k?phases is?O(k E).

e. Suppose that after running k phases of MST-REDUCE, as in part (d), we run Prim's algorithm by calling MST-PRIM (G?, C?, r), where G?, with weight attribute c?, is returned by the last phase and r is any vertex in G?.V. Show how to pick k so that the overall running time is O(E lg lg V). Argue that your choice of k minimizes the overall asymptotic running time.

f. For what values of |E| (in terms of |V|) does Prim's algorithm with preprocessing asymptotically beat Prim's algorithm without preprocessing?

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  answer-question

Introduction to Algorithms

ISBN: 978-0262033848

3rd edition

Authors: Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest

Question Posted: