Description
You are given an integer n
, which indicates that there are n
courses labeled from 1
to n
. You are also given an array relations
where relations[i] = [prevCoursei, nextCoursei]
, representing a prerequisite relationship between course prevCoursei
and course nextCoursei
: course prevCoursei
has to be taken before course nextCoursei
. Also, you are given the integer k
.
In one semester, you can take at most k
courses as long as you have taken all the prerequisites in the previous semesters for the courses you are taking.
Return the minimum number of semesters needed to take all courses. The testcases will be generated such that it is possible to take every course.
Example 1:
![](https://assets.leetcode.com/uploads/2020/05/22/leetcode_parallel_courses_1.png)
Input: n = 4, relations = [[2,1],[3,1],[1,4]], k = 2 Output: 3 Explanation: The figure above represents the given graph. In the first semester, you can take courses 2 and 3. In the second semester, you can take course 1. In the third semester, you can take course 4.
Example 2:
![](https://assets.leetcode.com/uploads/2020/05/22/leetcode_parallel_courses_2.png)
Input: n = 5, relations = [[2,1],[3,1],[4,1],[1,5]], k = 2 Output: 4 Explanation: The figure above represents the given graph. In the first semester, you can only take courses 2 and 3 since you cannot take more than two per semester. In the second semester, you can take course 4. In the third semester, you can take course 1. In the fourth semester, you can take course 5.
Constraints:
1 <= n <= 15
1 <= k <= n
0 <= relations.length <= n * (n-1) / 2
relations[i].length == 2
1 <= prevCoursei, nextCoursei <= n
prevCoursei != nextCoursei
- All the pairs
[prevCoursei, nextCoursei]
are unique. - The given graph is a directed acyclic graph.
Solution
Python3
class Solution:
def minNumberOfSemesters(self, n: int, relations: List[List[int]], k: int) -> int:
pre = [0] * n
target = (1 << n) - 1
dp = [n + 1] * (1 << n)
for a, b in relations:
a -= 1
b -= 1
pre[b] |= (1 << a)
queue = deque([(0, 0)])
while queue:
state, steps = queue.popleft()
available = []
if state == target: return steps
for course in range(n):
# means the course is already taken
if state & (1 << course) > 0: continue
# does not meet the pre-req yet
if (pre[course] & state) != pre[course]: continue
available.append(course)
if len(available) <= k:
newState = state
for course in available:
newState |= (1 << course)
if steps + 1 < dp[newState]:
dp[newState] = steps + 1
queue.append((newState, steps + 1))
else:
for comb in combinations(available, k):
newState = state
for course in list(comb):
newState |= (1 << course)
if steps + 1 < dp[newState]:
dp[newState] = steps + 1
queue.append((newState, steps + 1))
C++
class Solution {
int a[15],f[32768],o[32768];
public:
int minNumberOfSemesters(int n, vector<vector<int>>& dependencies, int k) {
memset(a,0,sizeof(a));
int i,j,l;
for(auto e:dependencies)a[e[1]-1]|=1<<e[0]-1;
for(i=1;i<1<<n;i++)o[i]=o[i>>1]+(i&1);
memset(f,127,sizeof(f));
for(i=f[0]=0;i<1<<n;i++)if(f[i]<=n)
{
for(j=l=0;j<n;j++)if(!(i>>j&1)&&(a[j]&i)==a[j])l|=1<<j;
for(j=l;j;j=j-1&l)if(o[j]<=k)f[i|j]=min(f[i|j],f[i]+1);
}
return f[(1<<n)-1];
}
};