Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Local search for minimum spanning trees. Consider the set of all spanning trees (not just minimum ones) of a weighted, connected, undirected graphG=(V,E).

Recall from Section 5.1 that adding an edge to a spanning treeT creates an unique cycle, and subsequently removing any other edgee'e from this cycle gives back a different spanning treeT' . We will say that differ by a single edge swap (e,e')and that they are neighbors.

a) Show that it is possible to move from any spanning tree Tto any other spanning tree T' by performing a series of edge-swaps, that is, by moving from neighbor to neighbor. At most how many edge-swaps are needed?

(b) Show that ifT' is an MST, then it is possible to choose these swaps so that the costs of the spanning trees encountered along the way are nonincreasing. In other words, if the sequence of spanning trees encountered is

T=T0T1T2···Tk=T',

then cost(Ti+1)cost(Ti)foralli<k.

(c) Consider the following local search algorithm which is given as input an undirected graph G.

Let Tbe any spanning tree of G

while there is an edge-swap(e,e') which reduces cost(T):

TT+ee'returnT

Show that this procedure always returns a minimum spanning tree. At most how many iterations does it take ?

Short Answer

Expert verified

a). yes, it is possible to move from any spanning tree Tto any other spanning tree T' by performing a series of edge-swaps, that is, by moving from neighbour to neighbour.

b).The statement given in the second part is proved belowz.

c). This procedure returns a minimum spanning tree and at most four iterations it will take.

Step by step solution

01

Step 1: Local search for minimal spanning tree.

A minimal spanning tree is indeed an edge-weighted graph with a weight that is equal to which is less than the value about any other spanning tree.A subgraph is contain all vertices of graph.A subgraph should be contain (V-1) edges without any cycleThe minimum spanning tree is an edge-weighted graph whose weight is not more than the weight of any other spanning tree. Minimum spanning tree cost is defined as the number of edges for a minimal spanning tree may be calculated using the formula below,

Numberofedges=Numberofvertices1

In Equation, replace "numberofvertices=8"with the value.

Numberofedges=81=  7

To find the minimum distance in a spanning tree. We are using some algorithm.And the cost of minimum spanning tree is calculated by two algorithm these are as follow:

1). Kruskal’s algorithm

2). Prim’s algorithm

02

Step 2: Edge-swaps for minimum spanning trees.

a)

Here, a new edge-swap heuristic for generating spanning trees with a minimum number of branch vertices, that is the vertices of degree greater than two.to move from any spanning tree Tto any other spanning tree T' by performing a series of edge-swaps, that is, by moving from neighbor to neighbor. And therefore all four edges are pseudo-critical. All pairs are distinct. Use the Kruskal algorithm to find the minimum spanning tree by sorting the edges and picking edges from ones with smaller weights. Use a disjoint set to avoid adding redundant edges that result in a cycle.

And hence yes, it is possible to move from any spanning tree to Tany other spanning tree T' by performing a series of edge-swaps, that is, by moving from neighbor to neighbour.

03

Step 3: The sequence of spanning trees.

b)

if T'is an MST (minimum spanning tree) , then it is possible to choose these swaps so that the costs of the spanning trees encountered along the way are no increasing. In other words, if the sequence of spanning trees encountered is

T=T0T1T2···Tk=T',

Then, cost(Ti+1)cost(Ti)foralli<k.

To improve the lazy implementation of Prim's algorithm, we might try to delete ineligible edges from the priority queue, so that the priority queue contains only the crossing edges. But we can eliminate even more edges.

The key is to note that our only interest is in the minimal edge from each non-tree vertex to a tree vertex. When we add a vertex v to the tree, the only possible change with respect to each non-tree vertex w is that adding v brings w closer than before to the tree. In short, we do not need to keep on the priority queue all of the edges from w to vertices tree.

And need to keep track of the minimum-weight edge and check whether the addition of v to the tree necessitates that we update that minimum (because of an edge v-w that has lower weight), which we can do as we process each edge in s adjacency list.

In other words, we maintain on the priority queue just one edge for each non-tree vertex: the shortest edge that connects it to the tree.

Through this its sequence is must be in the form of,T=T0T1T2···Tk=T',

And cost of its ealiar tree (Ti+1)is always less than or equal to the cost of its present tree that is(Ti) . This is follow for all the value of k where it is always less than i. and it is defined in the mathematical way is shown as:

cost(Ti+1)cost(Ti)foralli<k.

04

Step 3: Local search for minimum spanning trees.

c)

Let’s AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take FB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.

We next consider the smallest weighted edge from remaining edges GH having weight 3. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.

Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.

minimum spanning tree is now connected containing V-1 edges.

By adding all the weights of the edges we can get the cost of its minimum spanning tree.To find the number of minimum spanning tree by using Kruskal algorithm is in which starts with the node which have minimum weight on its edge and no cycle is formed, include it in our minimum spanning tree. then again search the next minimum weight of its edge by applying these steps simultaneously we get the connected graph which is know as minimum spanning tree.

consider the smallest weighted edge so there we have two options that is AE or EF we can choose any of them edge.So, lets AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take FB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.

We next consider the smallest weighted edge from remaining edges GH having weight 3. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.

Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.

considering the smallest weighted edge so there we have two options that is AE or EF we can choose any of them edge.

So, lets AE is our first edge with weight 1. Then again we have to search the next minimum edge in the tree that is EF which is also with weight 1 after that we can search the weight which is now equal or greater than 1 which is EB and FB, both have edge weight is 2 then we can choose any of them so let’s take EB. As no cycle is formed so include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges FG having weight 3. As no cycle is formed, include it in our minimum spanning tree.

We next consider the smallest weighted edge from remaining edges GH having weight three. As no cycle is formed, include it in our minimum spanning tree. We next consider the smallest weighted edge from remaining edges GC having weight 4. As no cycle is formed, include it in our minimum spanning tree.

Finally consider the smallest weighted edge from remaining edges GD having weight 5. As no cycle is formed, include it in our minimum spanning tree.

So, the number of minimum spanning trees are: .According to Kruskal’s algorithm the order of the edges added to the MST are:

By sort all the edges in increasing order of their edge weight and pick the smallest one

So, Let’s start our sorting then we have two options that is AE and EF both has weight one. Let’s pick AE first then after EF. now search for next again we have two options that is EB and FB both has weight 2. Let’s choose FB with weight two also check if the new selected edge does create a cycle in the spanning tree or not if not then select that edge. After that select FG with weight three. Then GH with weight three. Then select wedge GC and GD with weight four and five. Then we get our final order of edges in minimum spanning tree.So, the order of the edges added to the minimum spanning tree are AE,EF,FB,FG,GH,GC,GD

Hence, this procedure returns a minimum spanning tree and at most four iterations it will take.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

In the MULTIWAY CUT problem, the input is an undirected graphG=(V,E) and a set of terminal nodess1,s2,...,skV. The goal is to find the minimum set of edges in whose removal leaves all terminals in different components.

(a) Show that this problem can be solved exactly in polynomial time when k=2.

(b) Give an approximation algorithm with ratio at most2 for the case k=3.

(c) Design a local search algorithm for multiway cut.

Devise a branch-and-bound algorithm for the SET COVER problem. This entails deciding:

(a) What is a subproblem?

(b) How do you choose a subproblem to expand?

(c) How do you expand a subproblem?

(d) What is an appropriate lowerbound

Do you think that your choices above will work well on typical instances of the problem? Why?

In the MAXIMUM CUT problem we are given an undirected graphG=(V,E) with a weightw(e) on each edge, and we wish to separate the vertices into two sets S and V − S so that the total weight of the edges between the two sets is as large as possible. For eachSV definew(S) to be the sum of allwe over all edges{u,v} such that |Su,v|=1. Obviously, MAX CUT is about maximizing w(S) over all subsets of .

Consider the following local search algorithm for MAX CUT:

start with anySV

while there is a subsetS'V such that

||S 0 | − |S|| = 1 andw(S')>w(S) do:

set S=S'

  1. Show that this is an approximation algorithm for MAX CUT with ratio2.

(b) But is it a polynomial-time algorithm?

In the backtracking algorithm for SAT, suppose that we always choose a subproblem (CNF formula) that has a clause that is as small as possible; and we expand it along a variable that appears in this small clause. Show that this is a polynomial-time algorithm in the special case in which the input formula has only clauses with two literals (that is, it is an instance of 2SAT).

In the MAX SAT problem, we are given a set of clauses, and we want to find an assignment that satisfies as many of them as possible.

(a) Show that if this problem can be solved in polynomial time, then so can SAT.

(b) Here’s a very naive algorithm.

for each variable:

set its value to either0or1 by flipping a coin

Suppose the input has m clauses, of which thejth haskj literals. Show that the expected number of clauses satisfied by this simple algorithm is

j=1m1-12k   m2

In other words, this is a 2-approximation in expectation! And if the clauses all contain literals, then this approximation factor improves to 1+1/2k1.

(c) Can you make this algorithm deterministic? (Hint: Instead of flipping a coin for each variable, select the value that satisfies the most of the as of yet unsatisfied clauses. What fraction of the clauses is satisfied in the end?)

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free