If there is no path between 'src' and 'ith' vertex, the value at 'ith' index in the answer array will be 10^8.
3 3 1
1 2 2
1 3 2
2 3 -1
In the above graph:
The length of the shortest path between vertex 1 and vertex 1 is 1->1 and the cost is 0.
The length of the shortest path between vertex 1 and vertex 2 is 1->2 and the cost is 2.
The length of the shortest path between vertex 1 and vertex 3 is 1->2->3 and the cost is 1.
Hence we return [0, 2, 1].
It's guaranteed that the graph doesn't contain self-loops and multiple edges. Also, the graph does not contain negative weight cycles.
The first line contains three single space-separated integers ‘N’, ‘M’, and ‘src’ denoting the number of vertices, the number of edges in the directed graph, the source vertex, respectively.
The following ‘M’ lines contain three single space-separated integers ‘u’, ‘v’, and ‘w’, denoting an edge from vertex ‘u’ to vertex ‘v’, having weight ‘w’.
Return an integer denoting the shortest path length from ‘src’ to ‘dest’. If no path is possible, return 10^9.
You do not need to print anything; it has already been taken care of. Just implement the given function.
In this algorithm, we have a source vertex and we find the shortest path from source to all the vertices.
For this, we will create an array of distances D[1...N], where D[i] stores the distance of vertex ‘i’ from the source vertex. Initially all the array values contain an infinite value, except ‘D[source]’, ‘D[source]’ = 0.
The algorithm consists of several iterations and in each iteration, we try to produce relaxation in the edges. Relaxation means reducing the value of ‘D[i]’.
For this, we will iterate on the edges of the graph let’s consider an edge (‘u’, ’v’, ’w’) :
The algorithm claims that ‘N-1’ iterations are enough to find the distances of the vertices from the source vertex.
We also know that the graph doesn’t contain negative weight cycles. Hence we do not need to check it explicitly.
Algorithm: