Weighted-graphs-TADM2E

From Algorithm Wiki
Jump to: navigation, search

Weighted Graph Algorithms

Simulating Graph Algorithms


6-1. For the graphs in Problem (see book):

  1. Draw the spanning forest after every iteration of the main loop in Kruskal's algorithm.
  2. Draw the spanning forest after every iteration of the main loop in Prim's algorithm.
  3. Find the shortest path spanning tree rooted in $ A $.
  4. Compute the maximum flow from $ A $ to $ H $.

(Solution 6.1)


Minimum Spanning Trees


6-2. Is the path between two vertices in a minimum spanning tree necessarily a shortest path between the two vertices in the full graph? Give a proof or a counterexample.


6-3. Assume that all edges in the graph have distinct edge weights (i.e., no pair of edges have the same weight). Is the path between a pair of vertices in a minimum spanning tree necessarily a shortest path between the two vertices in the full graph? Give a proof or a counterexample.

(Solution 6.3)


6-4. Can Prim's and Kruskal's algorithm yield different minimum spanning trees? Explain why or why not.


6-5. Does either Prim's and Kruskal's algorithm work if there are negative edge weights? Explain why or why not.

(Solution 6.5)


6-6. Suppose we are given the minimum spanning tree $ T $ of a given graph $ G $ (with $ n $ vertices and $ m $ edges) and a new edge $ e=(u,v) $ of weight $ w $ that we will add to $ G $. Give an efficient algorithm to find the minimum spanning tree of the graph $ G + e $. Your algorithm should run in $ O(n) $ time to receive full credit.


6-7. (a) Let $ T $ be a minimum spanning tree of a weighted graph $ G $. Construct a new graph $ G' $ by adding a weight of $ k $ to every edge of $ G $. Do the edges of $ T $ form a minimum spanning tree of $ G' $? Prove the statement or give a counterexample.
(b) Let $ P=\{ s, \ldots, t \} $ describe a shortest weighted path between vertices $ s $ and $ t $ of a weighted graph $ G $. Construct a new graph $ G' $ by adding a weight of $ k $ to every edge of $ G $. Does $ P $ describe a shortest path from $ s $ to $ t $ in $ G' $? Prove the statement or give a counterexample.

(Solution 6.7)


6-8. Devise and analyze an algorithm that takes a weighted graph $ G $ and finds the smallest change in the cost to a non-MST edge that would cause a change in the minimum spanning tree of $ G $. Your algorithm must be correct and run in polynomial time.


6-9. Consider the problem of finding a minimum weight connected subset $ T $ of edges from a weighted connected graph $ G $. The weight of $ T $ is the sum of all the edge weights in $ T $.

  1. Why is this problem not just the minimum spanning tree problem? Hint: think negative weight edges.
  2. Give an efficient algorithm to compute the minimum weight connected subset $ T $.

(Solution 6.9)


6-10. Let $ G=(V,E) $ be an undirected graph. A set $ F \subseteq E $ of edges is called a feedback-edge set if every cycle of $ G $ has at least one edge in $ F $.

  1. Suppose that $ G $ is unweighted. Design an efficient algorithm to find a minimum-size feedback-edge set.
  2. Suppose that $ G $ is a weighted undirected graph with positive edge weights. Design an efficient algorithm to find a minimum-weight feedback-edge set.


6-11. Modify Prim's algorithm so that it runs in time $ O(n \log k) $ on a graph that has only $ k $ different edges costs.

(Solution 6.11)


Union-Find


6-12. Devise an efficient data structure to handle the following operations on a weighted directed graph:

  1. Merge two given components.
  2. Locate which component contains a given vertex $ v $.
  3. Retrieve a minimum edge from a given component.


6-13. Design a data structure that can perform a sequence of, $ m $ union and {\em find} operations on a universal set of $ n $ elements, consisting of a sequence of all unions followed by a sequence of all finds, in time $ O(m+n) $.

(Solution 6.13)


Shortest Paths


6-14. The single-destination shortest path problem for a directed graph seeks the shortest path from every vertex to a specified vertex $ v $. Give an efficient algorithm to solve the single-destination shortest paths problem.


6-15. Let $ G=(V,E) $ be an undirected weighted graph, and let $ T $ be the shortest-path spanning tree rooted at a vertex $ v $. Suppose now that all the edge weights in $ G $ are increased by a constant number $ k $. Is $ T $ still the shortest-path spanning tree from $ v $?

(Solution 6.15)


6-16. Answer all of the following:

  1. Give an example of a weighted connected graph $ G=(V,E) $ and a vertex $ v $, such that the minimum spanning tree of $ G $ is the same as the shortest-path spanning tree rooted at $ v $.
  2. Give an example of a weighted connected directed graph $ G=(V,E) $ and a vertex $ v $, such that the minimum-cost spanning tree of $ G $ is very different from the shortest-path spanning tree rooted at $ v $.
  3. Can the two trees be completely disjointed?


6-17. Either prove the following or give a counterexample:

  1. Is the path between a pair of vertices in a minimum spanning tree of an undirected graph necessarily the shortest (minimum weight) path?
  2. Suppose that the minimum spanning tree of the graph is unique. Is the path between a pair of vertices in a minimum spanning tree of an undirected graph necessarily the shortest (minimum weight) path?

(Solution 6.17)


6-18. In certain graph problems, vertices have can have weights instead of or in addition to the weights of edges. Let $ C_v $ be the cost of vertex $ v $, and $ C_{(x,y)} $ the cost of the edge $ (x,y) $. This problem is concerned with finding the cheapest path between vertices $ a $ and $ b $ in a graph $ G $. The cost of a path is the sum of the costs of the edges and vertices encountered on the path.

  1. Suppose that each edge in the graph has a weight of zero (while non-edges have a cost of $ \infty $). Assume that $ C_v = 1 $ for all vertices $ 1 \leq v \leq n $ (i.e., all vertices have the same cost). Give an efficient algorithm to find the cheapest path from $ a $ to $ b $ and its time complexity.
  2. Now suppose that the vertex costs are not constant (but are all positive) and the edge costs remain as above. Give an efficient algorithm to find the cheapest path from $ a $ to $ b $ and its time complexity.
  3. Now suppose that both the edge and vertex costs are not constant (but are all positive). Give an efficient algorithm to find the cheapest path from $ a $ to $ b $ and its time complexity.


6-19. Let $ G $ be a weighted directed graph with $ n $ vertices and $ m $ edges, where all edges have positive weight. A directed cycle is a directed path that starts and ends at the same vertex and contains at least one edge. Give an $ O(n^3) $ algorithm to find a directed cycle in $ G $ of minimum total weight. Partial credit will be given for an $ O(n^2 m) $ algorithm.

(Solution 6.19)


6-20. Can we modify Dijkstra's algorithm to solve the single-source longest path problem by changing {\em minimum} to maximum? If so, then prove your algorithm correct. If not, then provide a counterexample.


6-21. Let $ G=(V,E) $ be a weighted acyclic directed graph with possibly negative edge weights. Design a linear-time algorithm to solve the single-source shortest-path problem from a given source $ v $.

(Solution 6.21)


6-22. Let $ G=(V,E) $ be a directed weighted graph such that all the weights are positive. Let $ v $ and $ w $ be two vertices in $ G $ and $ k \leq |V| $ be an integer. Design an algorithm to find the shortest path from $ v $ to $ w $ that contains exactly $ k $ edges. Note that the path need not be simple.


6-23. Arbitrage is the use of discrepancies in currency-exchange rates to make a profit. For example, there may be a small window of time during which 1 U.S. dollar buys 0.75 British pounds, 1 British pound buys 2 Australian dollars, and 1 Australian dollar buys 0.70 U.S. dollars. At such a time, a smart trader can trade one U.S. dollar and end up with $ 0.75 \times 2 \times 0.7 = 1.05 $ U.S. dollars---a profit of 5%. Suppose that there are $ n $ currencies $ c_1,...,c_n $ and an $ n \times n $ table $ R $ of exchange rates, such that one unit of currency $ c_i $ buys $ R[i,j] $ units of currency $ c_j $. Devise and analyze an algorithm to determine the maximum value of $ R[c_1,c_{i1}] \cdot R[c_{i1},c_{i2}] \cdots R[c_{i{k-1}},c_{ik}] \cdot R[c_{ik},c_1] $ Hint: think all-pairs shortest path.

(Solution 6.23)


Network Flow and Matching


6-24. A matching in a graph is a set of disjoint edges---i.e., edges that do not share any vertices in common. Give a linear-time algorithm to find a maximum matching in a tree.


6-25. An edge cover of an undirected graph $ G=(V,E) $ is a set of edges such that each vertex in the graph is incident to at least one edge from the set. Give an efficient algorithm, based on matching, to find the minimum-size edge cover for $ G $.

(Solution 6.25)