Medium
There are a total of numCourses
courses you have to take, labeled from 0
to numCourses - 1
. You are given an array prerequisites
where prerequisites[i] = [ai, bi]
indicates that you must take course bi
first if you want to take course ai
.
[0, 1]
, indicates that to take course 0
you have to first take course 1
.Return true
if you can finish all courses. Otherwise, return false
.
Example 1:
Input: numCourses = 2, prerequisites = [[1,0]]
Output: true
Explanation: There are a total of 2 courses to take. To take course 1 you should have finished course 0. So it is possible.
Example 2:
Input: numCourses = 2, prerequisites = [[1,0],[0,1]]
Output: false
Explanation: There are a total of 2 courses to take. To take course 1 you should have finished course 0, and to take course 0 you should also have finished course 1. So it is impossible.
Constraints:
1 <= numCourses <= 105
0 <= prerequisites.length <= 5000
prerequisites[i].length == 2
0 <= ai, bi < numCourses
To solve the Course Schedule problem, we can use a graph-based approach with topological sorting. We’ll represent the courses and their prerequisites as a directed graph, and then perform a topological sort to determine if there exists any cycle in the graph. If there is a cycle, it means there is a dependency loop, and it won’t be possible to complete all courses.
prerequisites
array and add edges to the graph.from collections import defaultdict
class Solution:
def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:
# Build the graph
graph = defaultdict(list)
for course, prereq in prerequisites:
graph[course].append(prereq)
# Function for topological sorting using DFS
def dfs(course, visited, path):
if course in path:
return False # Cycle detected
if visited[course]:
return True # Already visited
visited[course] = True
path.add(course)
for neighbor in graph[course]:
if not dfs(neighbor, visited, path):
return False
path.remove(course)
return True
# Perform topological sorting for each course
for course in range(numCourses):
visited = [False] * numCourses
path = set()
if not dfs(course, visited, path):
return False
return True
prerequisites
array and add edges to the graph.dfs
for topological sorting using Depth-First Search (DFS).This solution has a time complexity of O(V + E), where V is the number of courses and E is the number of prerequisites. The space complexity is O(V + E) for storing the graph.