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.