12 all pair shortest paths october 24
play

12 All-Pair Shortest Paths (October 24) 12.1 The Problem In the - PDF document

CS 373 Lecture 12: All-Pair Shortest Paths Fall 2002 12 All-Pair Shortest Paths (October 24) 12.1 The Problem In the last lecture, we saw algorithms to find the shortest path from a source vertex s to a target vertex t in a directed graph. As


  1. CS 373 Lecture 12: All-Pair Shortest Paths Fall 2002 12 All-Pair Shortest Paths (October 24) 12.1 The Problem In the last lecture, we saw algorithms to find the shortest path from a source vertex s to a target vertex t in a directed graph. As it turns out, the best algorithms for this problem actually find the shortest path from s to every possible target (or from every possible source to t ) by constructing a shortest path tree. The shortest path tree specifies two pieces of information for each node v in the graph • dist( v ) is the length of the shortest path (if any) from s to v . • pred( v ) is the second-to-last vertex (if any) the shortest path (if any) from s to v . In this lecture, we want to generalize the shortest path problem even further. In the all pairs shortest path problem, we want to find the shortest path from every possible source to every possible destination. Specifically, for every pair of vertices u and v , we need to compute the following information: • dist( u, v ) is the length of the shortest path (if any) from u to v . • pred( u, v ) is the second-to-last vertex (if any) on the shortest path (if any) from u to v . For example, for any vertex v , we have dist( v, v ) = 0 and pred( v, v ) = Null . If the shortest path from u to v is only one edge long, then dist( u, v ) = w ( u → v ) and pred( u, v ) = u . If there is no shortest path from u to v —either because there’s no path at all, or because there’s a negative cycle—then dist( u, v ) = ∞ and pred( v, v ) = Null . The output of our shortest path algorithms will be a pair of V × V arrays encoding all V 2 distances and predecessors. Many maps include a distance matrix—to find the distance from (say) Champaign to (say) Columbus, you would look in the row labeled ‘Champaign’ and the column labeled ‘Columbus’. In these notes, I’ll focus almost exclusively on computing the distance array. The predecessor array, from which you would compute the actual shortest paths, can be computed with only minor additions to the algorithms I’ll describe (hint, hint). 12.2 Lots of Single Sources The most obvious solution to the all pairs shortest path problem is just to run a single-source shortest path algorithm V times, once for every possible source vertex! Specifically, to fill in the one-dimensional subarray dist[ s ][ ], we invoke either Dijkstra’s or Moore’s algorithm starting at the source vertex s . ObviousAPSP ( V, E, w ): for every vertex s dist[ s ][ ] ← SSSP ( V, E, w, s ) The running time of this algorithm depends on which single source algorithm we use. If we use Moore’s algorithm, the overall running time is Θ( V 2 E ) = O ( V 4 ). If all the edge weights are positive, we can use Dijkstra’s algorithm instead, which decreases the running time to Θ( V E + V 2 log V ) = O ( V 3 ). For graphs with negative edge weights, Dijkstra’s algorithm can take exponential time, so we can’t get this improvement directly. 1

  2. CS 373 Lecture 12: All-Pair Shortest Paths Fall 2002 12.3 Reweighting One idea that occurs to most people is increasing the weights of all the edges by the same amount so that all the weights become positive, and then applying Dijkstra’s algorithm. Unfortunately, this simple idea doesn’t work. Different paths change by different amounts, which means the shortest paths in the reweighted graph may not be the same as in the original graph. 3 2 2 s t 4 4 Increasing all the edge weights by 2 changes the shortest path s to t . However, there is a more complicated method for reweighting the edges in a graph. Suppose each vertex v has some associated cost c ( v ), which might be positive, negative, or zero. We can define a new weight function w ′ as follows: w ′ ( u → v ) = c ( u ) + w ( u → v ) − c ( v ) To give some intuition, imagine that when we leave vertex u , we have to pay an exit tax of c ( u ), and when we enter v , we get c ( v ) as an entrance gift. Now it’s not too hard to show that the shortest paths with the new weight function w ′ are exactly the same as the shortest paths with the original weight function w . In fact, for any path u ❀ v from one vertex u to another vertex v , we have w ′ ( u ❀ v ) = c ( u ) + w ( u ❀ v ) − c ( v ) . We pay c ( u ) in exit fees, plus the original weight of of the path, minus the c ( v ) entrance gift. At every intermediate vertex x on the path, we get c ( x ) as an entrance gift, but then immediately pay it back as an exit tax! 12.4 Johnson’s Algorithm Johnson’s all-pairs shortest path algorithm finds a cost c ( v ) for each vertex, so that when the graph is reweighted, every edge has non-negative weight. Suppose the graph has a vertex s that has a path to every other vertex. Johnson’s algorithm computes the shortest paths from s to every other vertex, using Moore’s algorithm (which doesn’t care if the edge weights are negative), and then sets c ( v ) = dist( s, v ) , so the new weight of every edge is w ′ ( u → v ) = dist( s, u ) + w ( u → v ) − dist( s, v ) . Why are all these new weights non-negative? Because otherwise, Moore’s algorithm wouldn’t be finished! Recall that an edge u → v is tense if dist( s, u ) + w ( u → v ) < dist( s, v ), and that single- source shortest path algorithms eliminate all tense edges. The only exception is if the graph has a negative cycle, but then shortest paths aren’t defined, and Johnson’s algorithm simply aborts. But what if the graph doesn’t have a vertex s that can reach everything? Then no matter where we start Moore’s algorithm, some of those vertex costs will be infinite. Johnson’s algorithm 2

  3. CS 373 Lecture 12: All-Pair Shortest Paths Fall 2002 avoids this problem by adding a new vertex s to the graph, with zero-weight edges going from s to every other vertex, but no edges going back into s . This addition doesn’t change the shortest paths between any other pair of vertices, because there are no paths into s . So here’s Johnson’s algorithm in all its glory. JohnsonAPSP ( V, E, w ) : create a new vertex s for every vertex v ∈ V w ( s → v ) ← 0; w ( v → s ) ← ∞ dist[ s ][ ] ← Moore ( V, E, w, s ) abort if Moore found a negative cycle for every edge ( u, v ) ∈ E w ′ ( u → v ) ← dist[ s ][ u ] + w ( u → v ) − dist[ v ][ s ] for every vertex v ∈ V dist[ v ][ ] ← Dijkstra ( V, E, w ′ , v ) The algorithm spends Θ( V ) time adding the artificial start vertex s , Θ( V E ) time running Moore , O ( E ) time reweighting the graph, and then Θ( V E + V 2 log V ) running V passes of Dijk- stra’s algorithm. The overall running time is Θ( V E + V 2 log V ) . 12.5 Dynamic Programming There’s a completely different solution to the all-pairs shortest path problem that uses dynamic programming instead of a single-source algorithm. For dense graphs where E = Ω( V 2 ), the dynamic programming approach gives the same running time as Johnson’s algorithm, but with a much simpler algorithm. In particular, the new algorithm avoids Dijkstra’s algorithm, which gets its efficiency from Fibonacci heaps, which are rather easy to screw up in the implementation. To get a dynamic programming algorithm, we first need to come up with a recursive formulation of the problem. If we try to recursively define dist( u, v ), we might get something like this: � 0 if u = v dist( u, v ) = � � min dist( u, x ) + w ( x → v ) otherwise x In other words, to find the shortest path from u to v , try all possible predecessors x , compute the shortest path from u to x , and then add the last edge u → v . Unfortunately, this recurrence doesn’t work! In order to compute dist( u, v ), we first have to compute dist( u, x ) for every other vertex x , but to compute any dist( u, x ), we first need to compute dist( u, v ). We’re stuck in an infinite loop! To avoid this circular dependency, we need some additional parameter that decreases at each recursion, eventually reaching zero at the base case. One possibility is to include the number of edges in the shortest path as this third magic parameter. So let’s define dist( u, v, k ) to be the length of the shortest path from u to v that uses at most k edges. Since we know that the shortest path between any two vertices has at most V − 1 vertices, what we’re really trying to compute is dist( u, v, V − 1). After a little thought, we get the following recurrence.  0 if u = v    ∞ if k = 0 and u � = v dist( u, v, k ) =  � � min dist( u, x, k − 1) + w ( x → v ) otherwise   x 3

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend