Difference between revisions of "Chapter 7"

From The Algorithm Design Manual Solution Wiki
Jump to navigation Jump to search
Line 95: Line 95:
  
  
:[[7.21]]]. Consider the problem of determining whether a given undirected graph <math>G=(V,E)</math> contains a ''triangle'' or cycle of length 3.  
+
:[[7.21]]. Consider the problem of determining whether a given undirected graph <math>G=(V,E)</math> contains a ''triangle'' or cycle of length 3.  
 
:(a)Give an  <math>O(|V|^3)</math> to find a triangle if one exists.
 
:(a)Give an  <math>O(|V|^3)</math> to find a triangle if one exists.
 
:(b)Improve your algorithm to run in time <math>O(|V| \cdot |E|)</math>. You may assume <math>|V| \leq |E|</math>.  
 
:(b)Improve your algorithm to run in time <math>O(|V| \cdot |E|)</math>. You may assume <math>|V| \leq |E|</math>.  

Revision as of 01:06, 21 September 2020

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. The reverse of a directed graph [math]\displaystyle{ G = (V, E) }[/math] is another directed graph [math]\displaystyle{ G^R = (V, E^R) }[/math] on the same vertex set, but with all edges reversed; that is, [math]\displaystyle{ E^R = {(v, u) : (u, v) \in E} }[/math]. Give an [math]\displaystyle{ O(n + m) }[/math] algorithm for computing the reverse of an [math]\displaystyle{ n }[/math]-vertex [math]\displaystyle{ m }[/math]-edge graph in adjacency list format.

Solution


7.28. Your job is to arrange [math]\displaystyle{ n }[/math] ill-behaved children in a straight line, facing front. You are given a list of [math]\displaystyle{ m }[/math] statements of the form “[math]\displaystyle{ i }[/math] hates [math]\displaystyle{ j }[/math].” If [math]\displaystyle{ i }[/math] hates [math]\displaystyle{ j }[/math], then you do not want to put [math]\displaystyle{ i }[/math] somewhere behind [math]\displaystyle{ j }[/math], because then [math]\displaystyle{ i }[/math] is capable of throwing something at [math]\displaystyle{ j }[/math].
(a) Give an algorithm that orders the line (or says that it is not possible) in [math]\displaystyle{ O(m + n) }[/math] time.
(b) Suppose instead you want to arrange the children in rows such that if [math]\displaystyle{ i }[/math] hates [math]\displaystyle{ j }[/math], then [math]\displaystyle{ i }[/math] must be in a lower numbered row than [math]\displaystyle{ j }[/math]. Give an efficient algorithm to find the minimum number of rows needed, if it is possible.


7.29. A particular academic program has [math]\displaystyle{ n }[/math] required courses, certain pairs of which have prerequisite relations so that [math]\displaystyle{ (x, y) }[/math] means you must take course [math]\displaystyle{ x }[/math] before [math]\displaystyle{ y }[/math]. How would you analyze the prerequisite pairs to make sure it is possible for people to complete the program?

Solution


7.30. Gotcha-solitaire is a game on a deck with [math]\displaystyle{ n }[/math] distinct cards (all face up) and [math]\displaystyle{ m }[/math] gotcha pairs [math]\displaystyle{ (i, j) }[/math] such that card [math]\displaystyle{ i }[/math] must be played sometime before card [math]\displaystyle{ j }[/math]. You play by sequentially choosing cards, and win if you pick up the entire deck without violating any gotcha pair constraints. Give an efficient algorithm to find a winning pickup order if one exists.


7.31. You are given a list of [math]\displaystyle{ n }[/math] words each of length [math]\displaystyle{ k }[/math] in a language you don’t know, although you are told that words are sorted in lexicographic (alphabetical) order. Reconstruct the order of the α alphabet letters (characters) in that language.
For example, if the strings are [math]\displaystyle{ {QQZ, QZZ, XQZ, XQX, XXX} }[/math], the character order must be [math]\displaystyle{ Q }[/math] before [math]\displaystyle{ Z }[/math] before [math]\displaystyle{ X }[/math].
(a) Give an algorithm to efficiently reconstruct this character order. (Hint: use a graph structure, where each node represents one letter.)
(b) What is its running time, as a function of [math]\displaystyle{ n, k }[/math], and [math]\displaystyle{ \alpha }[/math]?

Solution


7.32. A weakly connected component in a directed graph is a connected component ignoring the direction of the edges. Adding a single directed edge to a directed graph can reduce the number of weakly connected components, but by at most how many components? What about the number of strongly connected components?


7.33. Design a linear-time algorithm that, given an undirected graph [math]\displaystyle{ G }[/math] and a particular edge [math]\displaystyle{ e }[/math] in it, determines whether [math]\displaystyle{ G }[/math] has a cycle containing [math]\displaystyle{ e }[/math].

Solution


7.34. An arborescence of a directed graph [math]\displaystyle{ G }[/math] is a rooted tree such that there is a directed path from the root to every other vertex in the graph. Give an efficient and correct algorithm to test whether [math]\displaystyle{ G }[/math] contains an arborescence, and its time complexity.


7.35. A mother vertex in a directed graph [math]\displaystyle{ G = (V, E) }[/math] is a vertex [math]\displaystyle{ v }[/math] such that all other vertices [math]\displaystyle{ G }[/math] can be reached by a directed path from [math]\displaystyle{ v }[/math].
(a) Give an [math]\displaystyle{ O(n + m) }[/math] algorithm to test whether a given vertex [math]\displaystyle{ v }[/math] is a mother of [math]\displaystyle{ G }[/math], where [math]\displaystyle{ n = |V| }[/math] and [math]\displaystyle{ m = |E| }[/math].
(b) Give an [math]\displaystyle{ O(n + m) }[/math] algorithm to test whether graph [math]\displaystyle{ G }[/math] contains a mother vertex.

Solution


7.36. Let [math]\displaystyle{ G }[/math] be a directed graph. We say that [math]\displaystyle{ G }[/math] is k-cyclic if every (not necessarily simple) cycle in [math]\displaystyle{ G }[/math] contains at most [math]\displaystyle{ k }[/math] distinct nodes. Give a linear-time algorithm to determine if a directed graph [math]\displaystyle{ G }[/math] is [math]\displaystyle{ k }[/math]-cyclic, where [math]\displaystyle{ G }[/math] and [math]\displaystyle{ k }[/math] are given as inputs. Justify the correctness and running time of your algorithm.


7.37. A tournament is a directed graph formed by taking the complete undirected graph and assigning arbitrary directions on the edges—that is, a graph [math]\displaystyle{ G = (V, E) }[/math] such that for all [math]\displaystyle{ u,v \in V }[/math], exactly one of [math]\displaystyle{ (u, v) }[/math] or [math]\displaystyle{ (v, u) }[/math] is in [math]\displaystyle{ E }[/math]. Show that every tournament has a Hamiltonian path—that is, a path that visits every vertex exactly once. Give an algorithm to find this path.

Solution

Articulation Vertices

7.38. An articulation vertex of a connected graph [math]\displaystyle{ G }[/math] is a vertex whose deletion disconnects [math]\displaystyle{ G }[/math]. Let [math]\displaystyle{ G }[/math] be a graph with [math]\displaystyle{ n }[/math] vertices and [math]\displaystyle{ m }[/math] edges. Give a simple [math]\displaystyle{ O(n+m) }[/math] algorithm for finding a vertex of [math]\displaystyle{ G }[/math] that is not an articulation vertex—that is, whose deletion does not disconnect [math]\displaystyle{ G }[/math].


7.39. Following up on the previous problem, give an [math]\displaystyle{ O(n+m) }[/math] algorithm that finds a deletion order for the [math]\displaystyle{ n }[/math] vertices such that no deletion disconnects the graph. (Hint: think DFS/BFS.)

Solution


7.40. Suppose [math]\displaystyle{ G }[/math] is a connected undirected graph. An edge [math]\displaystyle{ e }[/math] whose removal disconnects the graph is called a bridge. Must every bridge [math]\displaystyle{ e }[/math] be an edge in a depth-first search tree of [math]\displaystyle{ G }[/math]? Give a proof or a counterexample.


7.41. A city that only has two-way streets has decided to change them all into one-way streets. They want to ensure that the new network is strongly connected so everyone can legally drive anywhere in the city and back.
(a) Let [math]\displaystyle{ G }[/math] be the original undirected graph. Prove that there is a way to properly orient/direct the edges of [math]\displaystyle{ G }[/math] provided [math]\displaystyle{ G }[/math] does not contain a bridge.
(b) Give an efficient algorithm to orient the edges of a bridgeless graph [math]\displaystyle{ G }[/math] so the result is strongly connected.

Solution

Interview Problems

7.42. Which data structures are used in depth-first and breath-first search?


7.43. Write a function to traverse binary search tree and return the ith node in sorted order.

Solution


Back to Chapter List