Problem of the day
You are given a directed and unweighted graph of 'V' vertices and 'E' edges. All edges are given in a 2-dimensional array ‘Edges’ in which ‘Edges[i][0]’ and ‘Edges[i][1]’ contain an edge. Your task is to check if there exists a path from the vertex 'source' to 'destination'.
For Example:Consider the number of vertices is 4 and number of edges is 3, and the array of edges is:
[ [0, 1]
[1, 2]
[2, 3] ]
there exists one path between 0 and 2, which is 0 -> 1 -> 2. Hence, the answer is 'true'.
The first line of input contains an integer ‘T’, the number of test cases.
The first line of each test case contains two space-separated integers, ‘V’, and ‘E’, which denote the number of vertices and edges in the graph.
The next 'E' lines will denote the edges of the graph where every edge is defined by two space-separated integers 'Edges[i][0]’ and 'Edges[i][1]', which signifies an edge from vertex 'Edges[i][0]’ to vertex 'Edges[i][1]’.
The last line of each test case contains two integers, ‘source’ and ‘destination’.
Output Format :
For each test case, print 'true' if there exists a path from vertex 'source' to 'destination'. Otherwise, print 'false'.
Print the output of each test case in a separate line.
Note:
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 5
1 <= V, E <= 10 ^ 5
0 <= Edges[i][0], Edges[i][1] < V
0 <= source, destination < V
Time Limit: 1 sec
2
3 3
0 1
1 2
1 0
0 2
4 2
1 2
0 3
0 2
true
false
In test case 1:
In this, there are 3 vertices and 3 edges, and there is a path between 0 and 2 which is 0 -> 1 -> 2. Hence, the answer is true.
In test case 2:
In this, there are 4 vertices and 2 edges, and there is no path between 0 and 2. Hence, the answer is false.
1
4 5
0 1
0 2
1 2
2 0
2 3
3 1
false
There are 4 vertices and 5 edges, and there is no path between 3 and 1, so our answer is false.
Try to use a Depth-first search.
In this approach, we are going to use DFS(Depth-first search). We have to make a visited array isVisited which checks whether the particular node number is visited or not.
Initialize all entries of the isVisited array with 0. Now we have to use the recursive function here. The first call is made on the node source, and in the recursive function, mark this node as visited and checks whether it is the node destination or not. If yes, we will return true; otherwise, we will make recursive calls on all its adjacent unvisited nodes. If any of the calls return true then return we will return true, else return false.
Algorithm:
O(V + E) where V is the number of vertices in the graph and E is the number of edges in the graph.
We are traversing on each vertex and edge only one time. So, the overall time complexity is O(V + E).
O(V + E) where V is the number of vertices in the graph and E is the number of edges in the graph.
In the worst case, the space complexity O(V + E) is required by the adjacency list. The O(V) space is used for the visited array and recursion stack in the worst case. So, the overall space complexity is O(V + V + E) = O(V + E).