all pairs shortest paths
play

All Pairs Shortest Paths Eric Price UT Austin CS 331, Spring 2020 - PowerPoint PPT Presentation

All Pairs Shortest Paths Eric Price UT Austin CS 331, Spring 2020 Coronavirus Edition CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10 Talk Outline APSP 1 Problems 2 CS 331, Spring Eric Price (UT Austin) All Pairs


  1. All Pairs Shortest Paths Eric Price UT Austin CS 331, Spring 2020 Coronavirus Edition CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  2. Talk Outline APSP 1 Problems 2 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  3. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  4. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . Approaches: CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  5. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . Approaches: ◮ Bellman-Ford for all s : O ( V 2 E ) CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  6. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . Approaches: ◮ Bellman-Ford for all s : O ( V 2 E ) ◮ Dijkstra for all s : O ( VE + V 2 log V ) if nonnegative weights CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  7. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . Approaches: ◮ Bellman-Ford for all s : O ( V 2 E ) ◮ Dijkstra for all s : O ( VE + V 2 log V ) if nonnegative weights ◮ Floyd-Warshall: O ( V 3 ) CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  8. All Pairs Shortest Paths Given a graph G , find shortest s � t path distance for all s , t ∈ V . Approaches: ◮ Bellman-Ford for all s : O ( V 2 E ) ◮ Dijkstra for all s : O ( VE + V 2 log V ) if nonnegative weights ◮ Floyd-Warshall: O ( V 3 ) ◮ Johnson: O ( VE + V 2 log V ) in general CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  9. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  10. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  11. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  12. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  13. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. Q: negative edges? CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  14. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. Q: negative edges? OK CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  15. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. Q: negative edges? OK Negative cycles? CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  16. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. Q: negative edges? OK Negative cycles? Check if diagonal < 0 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  17. Floyd-Warshall 1: function FloydWarshall ( A ) ⊲ A [ u → v ] is cost of u → v edge D ← A ⊲ (or ∞ if no edge) 2: for w ∈ V do 3: for u ∈ V do 4: for v ∈ V do 5: D [ u , v ] ← min( D [ u , v ] , D [ u , w ] + D [ w , v ]) 6: return D 7: Takes an adjacency matrix, returns a distance matrix O ( n 3 ) time Lemma Let P = ( s , u 1 , . . . , u k , t ) be a shortest s → t path. After visiting w / ∈ { s , t } , P \ { w } is also a shortest s � t path in D. Q: negative edges? OK Negative cycles? Check if diagonal < 0 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  18. Johnson’s algorithm Recall: CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  19. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  20. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  21. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . Idea: in O ( VE + V 2 log V ), CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  22. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . Idea: in O ( VE + V 2 log V ), Compute a single h so w ′ ( u → v ) ≥ 0 for all h . 1 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  23. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . Idea: in O ( VE + V 2 log V ), Compute a single h so w ′ ( u → v ) ≥ 0 for all h . ( h consistent) 1 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  24. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . Idea: in O ( VE + V 2 log V ), Compute a single h so w ′ ( u → v ) ≥ 0 for all h . ( h consistent part 2) 1 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

  25. Johnson’s algorithm Recall: ◮ Dijkstra would be great if we had nonnegative edges ◮ Reweighting: for any h : V → R , the graph with weights w ′ ( u → v ) := w ( u → v ) − h ( u ) + h ( v ) . has shortest path distances D ′ [ s , t ] = D [ s , t ] + h ( t ) − h ( s ) . Idea: in O ( VE + V 2 log V ), Compute a single h so w ′ ( u → v ) ≥ 0 for all h . ( h consistent part 2) 1 Compute D ′ for every source s using Dijkstra on w ′ . 2 CS 331, Spring Eric Price (UT Austin) All Pairs Shortest Paths / 10

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