You have been given a directed weighted graph of βNβ vertices labeled from 1 to 'N' and βMβ edges. Each edge connecting two nodes 'u' and 'v' has a weight 'w' denoting the distance between them.
Your task is to calculate the shortest distance of all vertices from the source vertex 'src'.
If there is no path between 'src' and 'ith' vertex, the value at 'ith' index in the answer array will be 10^8.
Example :

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].
Note :
It's guaranteed that the graph doesn't contain self-loops and multiple edges. Also, the graph does not contain negative weight cycles.
Input Format :
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β.
Output Format :
Return an integer denoting the shortest path length from βsrcβ to βdestβ. If no path is possible, return 10^9.
Note :
You do not need to print anything; it has already been taken care of. Just implement the given function.
4 4 1
1 2 4
1 3 3
2 4 7
3 4 -2
0 4 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 4.
The length of the shortest path between vertex 1 and vertex 3 is 1->3 and the cost is 3.
The length of the shortest path between vertex 1 and vertex 4 is 1->3->4 and the cost is 1.
Hence we return [0, 4, 3, 1].
2 1 1
2 1 3
0 1000000000
1 <= N <= 50
1 <= M <= 300
1 <= src <= N
1 <= u,v <= N
-10^5 <= w <= 10^5
Time Limit: 1 sec
Think of negative edges and see which algorithm works on negative edges.
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:
O(N * M), where βNβ is the number of vertices in a graph and βMβ is the number of edges in the graph.
We are doing βNβ iterations and in each iteration, we are iterating on the edges of the graph. Thus, the final time complexity will be O(N * M).
O(N), where βNβ is the number of vertices in a graph.
We are making an array βDβ which will take O(N) extra space.