Chapter 7

From The Algorithm Design Manual Solution Wiki
Jump to navigation Jump to search

Graph Traversal

Simulating Graph Algorithms

7.1. For the following graphs [math]\displaystyle{ G_1 }[/math] (left) and [math]\displaystyle{ G_2 }[/math] (right):
(see book for figures)
(a)Report the order of the vertices encountered on a breadth-first search starting from vertex [math]\displaystyle{ A }[/math]. Break all ties by picking the vertices in alphabetical order (i.e., [math]\displaystyle{ A }[/math] before [math]\displaystyle{ Z }[/math]).
(b)Report the order of the vertices encountered on a depth-first search starting from vertex [math]\displaystyle{ A }[/math]. Break all ties by picking the vertices in alphabetical order (i.e., [math]\displaystyle{ A }[/math] before [math]\displaystyle{ Z }[/math]).

Solution


7.2. Do a topological sort of the following graph [math]\displaystyle{ G }[/math]:
(see book for figure)

Traversal

7.3. Prove that there is a unique path between any pair of vertices in a tree.

Solution


7.4. Prove that in a breadth-first search on a undirected graph [math]\displaystyle{ G }[/math], every edge is either a tree edge or a cross edge, where [math]\displaystyle{ x }[/math] is neither an ancestor nor descendant of [math]\displaystyle{ y }[/math] in cross edge [math]\displaystyle{ (x, y) }[/math].


7.5. Give a linear algorithm to compute the chromatic number of graphs where each vertex has degree at most 2. Any bipartite graph has a chromatic number of 2. Must such graphs be bipartite?

Solution


7.6. You are given a connected, undirected graph [math]\displaystyle{ G }[/math] with [math]\displaystyle{ n }[/math] vertices and [math]\displaystyle{ m }[/math] edges. Give an [math]\displaystyle{ O(n + m) }[/math] algorithm to identify an edge you can remove from [math]\displaystyle{ G }[/math] while still leaving [math]\displaystyle{ G }[/math] connected, if one exists. Can you reduce the running time to [math]\displaystyle{ O(n) }[/math]?


7.7. In breadth-first and depth-first search, an undiscovered node is marked discovered when it is first encountered, and marked processed when it has been completely searched. At any given moment, several nodes might be simultaneously in the discovered state.
(a) Describe a graph on [math]\displaystyle{ n }[/math] vertices and a particular starting vertex [math]\displaystyle{ v }[/math] such that [math]\displaystyle{ \Theta(n) }[/math] nodes are simultaneously in the discovered state during a breadth-first search starting from [math]\displaystyle{ v }[/math].
(b) Describe a graph on [math]\displaystyle{ n }[/math] vertices and a particular starting vertex [math]\displaystyle{ v }[/math] such that [math]\displaystyle{ \Theta(n) }[/math] nodes are simultaneously in the discovered state during a depth-first search starting from [math]\displaystyle{ v }[/math].
(c) Describe a graph on [math]\displaystyle{ n }[/math] vertices and a particular starting vertex [math]\displaystyle{ v }[/math] such that at some point [math]\displaystyle{ \Theta(n) }[/math] nodes remain undiscovered, while [math]\displaystyle{ \Theta(n) }[/math] nodes have been processed during a depth-first search starting from [math]\displaystyle{ v }[/math].(Note, there may also be discovered nodes.)

Solution


7.8. Given pre-order and in-order traversals of a binary tree (discussed in Section 3.4.1), is it possible to reconstruct the tree? If so, sketch an algorithm to do it. If not, give a counterexample. Repeat the problem if you are given the pre-order and post-order traversals.


7.9. Present correct and efficient algorithms to convert an undirected graph [math]\displaystyle{ G }[/math] between the following graph data structures. You must give the time complexity of each algorithm, assuming [math]\displaystyle{ n }[/math] vertices and [math]\displaystyle{ m }[/math] edges.
(a)Convert from an adjacency matrix to adjacency lists.
(b)Convert from an adjacency list to an incidence matrix. An incidence matrix [math]\displaystyle{ M }[/math] has a row for each vertex and a column for each edge, such that [math]\displaystyle{ M[i,j]=1 }[/math] if vertex [math]\displaystyle{ i }[/math] is part of edge [math]\displaystyle{ j }[/math], otherwise [math]\displaystyle{ M[i,j] = 0 }[/math].
(c)Convert from an incidence matrix to adjacency lists.

Solution


7.10. Suppose an arithmetic expression is given as a tree. Each leaf is an integer and each internal node is one of the standard arithmetical operations [math]\displaystyle{ (+, -, *, /) }[/math]. For example, the expression [math]\displaystyle{ 2+3*4+(3*4)/5 }[/math] is represented by the tree in Figure 7.17(a). Give an [math]\displaystyle{ O(n) }[/math] algorithm for evaluating such an expression, where there are [math]\displaystyle{ n }[/math] nodes in the tree.


7.11. Suppose an arithmetic expression is given as a DAG (directed acyclic graph) with common subexpressions removed. Each leaf is an integer and each internal node is one of the standard arithmetical operations [math]\displaystyle{ (+,-,*,/) }[/math]. For example, the expression [math]\displaystyle{ 2+3*4+(3*4)/5 }[/math] is represented by the DAG in Figure (see book)(b). Give an [math]\displaystyle{ O(n+m) }[/math] algorithm for evaluating such a DAG, where there are [math]\displaystyle{ n }[/math] nodes and [math]\displaystyle{ m }[/math] edges in the DAG. Hint: modify an algorithm for the tree case to achieve the desired efficiency.

Solution


7.12. The war story of Section 7.4 (page 210) describes an algorithm for constructing the dual graph of the triangulation efficiently, although it does not guarantee linear time. Give a worst-case linear algorithm for the problem.

Applications

7.13. The Chutes and Ladders game has a board with n cells where you seek to travel from cell 1 to cell [math]\displaystyle{ n }[/math]. To move, a player throws a six-sided dice to determine how many cells forward they move. This board also contains chutes and ladders that connect certain pairs of cells. A player who lands on the mouth of a chute immediately falls back down to the cell at the other end. A player who lands on the base of a ladder immediately travels up to the cell at the top of the ladder. Suppose you have rigged the dice to give you full control of the number for each roll. Give an efficient algorithm to find the minimum number of dice throws to win.

Solution


7.14. Plum blossom poles are a Kung Fu training technique, consisting of [math]\displaystyle{ n }[/math] large posts partially sunk into the ground, with each pole [math]\displaystyle{ p_i }[/math] at position [math]\displaystyle{ (x_i, y_i) }[/math]. Students practice martial arts techniques by stepping from the top of one pole to the top of another pole. In order to keep balance, each step must be more than [math]\displaystyle{ d }[/math] meters but less than [math]\displaystyle{ 2d }[/math] meters. Give an efficient algorithm to find a safe path from pole [math]\displaystyle{ p_s }[/math] to [math]\displaystyle{ p_t }[/math] if it exists.


7.15. You are planning the seating arrangement for a wedding given a list of guests, [math]\displaystyle{ V }[/math]. For each guest [math]\displaystyle{ g }[/math] you have a list of all other guests who are on bad terms with them. Feelings are reciprocal: if [math]\displaystyle{ h }[/math] is on bad terms with [math]\displaystyle{ g }[/math], then [math]\displaystyle{ g }[/math] is on bad terms with [math]\displaystyle{ h }[/math]. Your goal is to arrange the seating such that no pair of guests sitting at the same table are on bad terms with each other. There will be only two tables at the wedding. Give an efficient algorithm to find an acceptable seating arrangement if one exists.

Solution

Algorithm Design

7.16. The square of a directed graph [math]\displaystyle{ G=(V,E) }[/math] is the graph [math]\displaystyle{ G^2=(V,E^2) }[/math] such that [math]\displaystyle{ (u,w) \in E^2 }[/math] iff there exists [math]\displaystyle{ v \in V }[/math] such that [math]\displaystyle{ (u,v) \in E }[/math] and [math]\displaystyle{ (v,w) \in E }[/math]; i.e., there is a path of exactly two edges from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ w }[/math].
Give efficient algorithms for both adjacency lists and matrices.


7.17. A vertex cover of a graph [math]\displaystyle{ G=(V,E) }[/math] is a subset of vertices [math]\displaystyle{ V' }[/math] such that each edge in [math]\displaystyle{ E }[/math] is incident on at least one vertex of [math]\displaystyle{ V' }[/math].
(a)Give an efficient algorithm to find a minimum-size vertex cover if [math]\displaystyle{ G }[/math] is a tree.
(b)Let [math]\displaystyle{ G=(V,E) }[/math] be a tree such that the weight of each vertex is equal to the degree of that vertex. Give an efficient algorithm to find a minimum-weight vertex cover of [math]\displaystyle{ G }[/math].
(c)Let [math]\displaystyle{ G=(V,E) }[/math] be a tree with arbitrary weights associated with the vertices. Give an efficient algorithm to find a minimum-weight vertex cover of [math]\displaystyle{ G }[/math].

Solution


7.18. A vertex cover of a graph [math]\displaystyle{ G=(V,E) }[/math] is a subset of vertices [math]\displaystyle{ V' \in V }[/math] such that every edge in [math]\displaystyle{ E }[/math] contains at least one vertex from [math]\displaystyle{ V' }[/math]. Delete all the leaves from any depth-first search tree of [math]\displaystyle{ G }[/math]. Must the remaining vertices form a vertex cover of [math]\displaystyle{ G }[/math]? Give a proof or a counterexample.


7.19. An independent set of an undirected graph [math]\displaystyle{ G=(V,E) }[/math] is a set of vertices $U$ such that no edge in [math]\displaystyle{ E }[/math] is incident on two vertices of [math]\displaystyle{ U }[/math].
(a)Give an efficient algorithm to find a maximum-size independent set if [math]\displaystyle{ G }[/math] is a tree.
(b)Let [math]\displaystyle{ G=(V,E) }[/math] be a tree with weights associated with the vertices such that the weight of each vertex is equal to the degree of that vertex. Give an efficient algorithm to find a maximum independent set of [math]\displaystyle{ G }[/math].
(c)Let [math]\displaystyle{ G=(V,E) }[/math] be a tree with arbitrary weights associated with the vertices. Give an efficient algorithm to find a maximum independent set of [math]\displaystyle{ G }[/math].

Solution


7.20. A vertex cover of a graph [math]\displaystyle{ G=(V,E) }[/math] is a subset of vertices [math]\displaystyle{ V' \in V }[/math] such that every edge in [math]\displaystyle{ E }[/math] contains at least one vertex from [math]\displaystyle{ V' }[/math]. An independent set of graph [math]\displaystyle{ G=(V,E) }[/math] is a subset of vertices [math]\displaystyle{ V' \in V }[/math] such that no edge in [math]\displaystyle{ E }[/math] contains both vertices from [math]\displaystyle{ V' }[/math].
An independent vertex cover is a subset of vertices that is both an independent set and a vertex cover of [math]\displaystyle{ G }[/math]. Give an efficient algorithm for testing whether [math]\displaystyle{ G }[/math] contains an independent vertex cover. What classical graph problem does this reduce to?


7.21]. Consider the problem of determining whether a given undirected graph [math]\displaystyle{ G=(V,E) }[/math] contains a triangle or cycle of length 3.
(a)Give an [math]\displaystyle{ O(|V|^3) }[/math] to find a triangle if one exists.
(b)Improve your algorithm to run in time [math]\displaystyle{ O(|V| \cdot |E|) }[/math]. You may assume [math]\displaystyle{ |V| \leq |E| }[/math].
Observe that these bounds gives you time to convert between the adjacency matrix and adjacency list representations of [math]\displaystyle{ G }[/math].

Solution


7.22. Consider a set of movies [math]\displaystyle{ M_1, M_2, \ldots, M_k }[/math]. There is a set of customers, each one of which indicates the two movies they would like to see this weekend. Movies are shown on Saturday evening and Sunday evening. Multiple movies may be screened at the same time.
You must decide which movies should be televised on Saturday and which on Sunday, so that every customer gets to see the two movies they desire. Is there a schedule where each movie is shown at most once? Design an efficient algorithm to find such a schedule if one exists.


7.23.The diameter of a tree [math]\displaystyle{ T=(V,E) }[/math] is given by
[math]\displaystyle{ \max_{u,v\in V} \delta(u,v) }[/math]
(where [math]\displaystyle{ \delta(u,v) }[/math] is the number of edges on the path from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ v }[/math]). Describe an efficient algorithm to compute the diameter of a tree, and show the correctness and analyze the running time of your algorithm.

Solution


7.24. Given an undirected graph [math]\displaystyle{ G }[/math] with [math]\displaystyle{ n }[/math] vertices and [math]\displaystyle{ m }[/math] edges, and an integer [math]\displaystyle{ k }[/math], give an [math]\displaystyle{ O(m+n) }[/math] algorithm that finds the maximum induced subgraph [math]\displaystyle{ H }[/math] of [math]\displaystyle{ G }[/math] such that each vertex in [math]\displaystyle{ H }[/math] has degree [math]\displaystyle{ \geq k }[/math], or prove that no such graph exists. An induced subgraph [math]\displaystyle{ F=(U,R) }[/math] of a graph [math]\displaystyle{ G=(V,E) }[/math] is a subset of [math]\displaystyle{ U }[/math] of the vertices [math]\displaystyle{ V }[/math] of [math]\displaystyle{ G }[/math], and all edges [math]\displaystyle{ R }[/math] of [math]\displaystyle{ G }[/math] such that both vertices of each edge are in [math]\displaystyle{ U }[/math].


7.25. Let [math]\displaystyle{ v }[/math] and [math]\displaystyle{ w }[/math] be two vertices in a directed graph [math]\displaystyle{ G=(V,E }[/math]. Design a linear-time algorithm to find the number of different shortest paths (not necessarily vertex disjoint) between [math]\displaystyle{ v }[/math] and [math]\displaystyle{ w }[/math]. Note: the edges in [math]\displaystyle{ G }[/math] are unweighted.

Solution


7.26. Design a linear-time algorithm to eliminate each vertex [math]\displaystyle{ v }[/math] of degree 2 from a graph by replacing edges [math]\displaystyle{ (u,v) }[/math] and [math]\displaystyle{ (v,w) }[/math] by an edge [math]\displaystyle{ (u,w) }[/math]. We also seek to eliminate multiple copies of edges by replacing them with a single edge. Note that removing multiple copies of an edge may create a new vertex of degree 2, which has to be removed, and that removing a vertex of degree 2 may create multiple edges, which also must be removed.

Directed Graphs

7.27


7.28


7.29


7.30


7.31


7.32


7.33


7.34


7.35


7.36


7.37


Articulation Vertices

7.38


7.39


7.40


7.41


Interview Problems

7.42


7.43


Back to Chapter List