#2050
Hard Algorithms Parallel courses iii
Array Dynamic Programming Graph Theory Topological Sort
66.8% acceptance
Feb 25, 2026
1729
47
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] = [prevCoursej, nextCoursej] denotes that course prevCoursej has to be completed before course nextCoursej (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).
Solution
Rust
Time O(n * m)
Space O(n * m)
impl Solution {
pub fn minimum_time(n: i32, relations: Vec<Vec<i32>>, time: Vec<i32>) -> i32 {
let n = n as usize;
let mut adj = vec![vec![]; n + 1];
let mut indegree = vec![0usize; n + 1];
for r in &relations {
let (u, v) = (r[0] as usize, r[1] as usize);
adj[u].push(v);
indegree[v] += 1;
}
// Kahn's algorithm with DP on earliest completion time
let mut earliest = vec![0i32; n + 1];
for i in 1..=n {
earliest[i] = time[i - 1];
}
let mut queue = std::collections::VecDeque::new();
for i in 1..=n {
if indegree[i] == 0 {
queue.push_back(i);
}
}
while let Some(u) = queue.pop_front() {
for &v in &adj[u] {
earliest[v] = earliest[v].max(earliest[u] + time[v - 1]);
indegree[v] -= 1;
if indegree[v] == 0 {
queue.push_back(v);
}
}
}
*earliest[1..=n].iter().max().unwrap()
}
}