All Pair Shortest Paths
Sometimes it is needed to find shortest path from each vertex to each vertex.
For example, when laying railway lines it is important to find the shortest routes between pair of two cities.
One of the ways to approach this problem is by running the single source shortest path algorithms on each and every node.
But this is not efficient.
This brings Floyd Warshall's algorithm into the picture.
But before that we need to know about Warshall's Algorithm
Warshall's algorithm
Consider a case where there is an edge from vertex to i.e., And there also exists a vertex from to i.e.
Now because of this, I can reach from after travelling through the intermediate node i.e.,
Some Special Notations
Consider B is a matrix, such that is if there exists a path between the vertex and
Now we denote all this cases using some special notations: - there exists a direct edge from to - there exists a edge from to with maximum intermediate node in between. - Similarly, there exists a edge from to with maximum intermediate nodes in between
Floyd Warshall's Algorithm
Algorithm
- Let us define a matrix named where is the number of vertices.
- Initialise if there exists a direct edge from to and the weight of the edge is
- If there does not exist a direct edge between and set
- Now
- Repeat step for n times.
- Now contains the shortest distance between and
Implementation
Time Complexity
This implementation has the time complexity of