You are given a directed graph with vertices labeled from 0 to N-1 and a list of M directed edges. Write a function that computes the minimum number of edge reversals required so that there is at least one path from a given source vertex S to a destination vertex D. If it is not possible to obtain such a path even after reversing some edges, the function should return -1.
Assumptions:
Input:
Output:
Example:
Input:
N = 5
M = 6
Edges = [
[0, 1],
[2, 1],
[2, 3],
[3, 4],
[4, 2],
[1, 0]
]
S = 0
D = 3
Output:
1
In the example, reversing the edge [2, 1] to [1, 2] would create a path from vertex 0 to vertex 3: 0 -> 1 -> 2 -> 3.
Design and implement an algorithm that solves the problem as described.