Parallel Courses III⚓︎
Description⚓︎
You are given an integer n, which indicates that there are n courses labeled from 1 to n. You are also given a 2D integer array relations where relations[j] = [prevCourse_j, nextCourse_j] denotes that course prevCourse_j has to be completed before course nextCourse_j (prerequisite relationship). Furthermore, you are given a 0-indexed integer array time where time[i] denotes how many months it takes to complete the (i+1)-th course.
You must find the minimum number of months needed to complete all the courses following these rules:
- You may start taking a course at any time if the prerequisites are met.
- Any number of courses can be taken at the same time.
Return the minimum number of months needed to complete all the courses.
Note: The test cases are generated such that it is possible to complete every course (i.e., the graph is a directed acyclic graph).
Example 1:

- Input:
n = 3, relations = [[1,3],[2,3]], time = [3,2,5] - Output:
8 - Explanation:
Example 2:

- Input:
n = 5, relations = [[1,5],[2,5],[3,5],[3,4],[4,5]], time = [1,2,3,4,5] - Output:
12 - Explanation:
Constraints:
1 <= n <= 5 * 10^40 <= relations.length <= min(n * (n - 1) / 2, 5 * 10^4)relations[j].length == 21 <= prevCourse_j, nextCourse_j <= nprevCourse_j != nextCourse_j- All the pairs
[prevCourse_j, nextCourse_j]are unique. time.length == n1 <= time[i] <= 10^4- The given graph is a directed acyclic graph.
Solution⚓︎
- Time complexity: \(O(V+E)\);
- Space complexity: \(O(V+E)\).