207. Course Schedule

🔗 Source
Intuition
We traverse the graph and find if there is a topological
Approach
- Create a 1-d array
visit
to record the visit status, with 3 states:
- 0 means it has not been visited
- 1 means it has been visited
- -1 means there is a conflict
- Firstly, build a directed graph, and then start from the first course, find which course it can constitute, temporarily mark the current course as visited
- Call DFS recursion on the newly obtained course until a new course has been visited, then return false, if there is no conflict, return true, and then change the course marked as visited to unvisited.
Complexity
- Time complexity: \(O(V+E)\)
- Space complexity: \(O(V)\)
Code
| class Solution {
public boolean canFinish(int numCourses, int[][] prerequisites) {
List<Integer>[] adjcent = new List[numCourses];
int[] visit = new int[numCourses];
for (int i = 0; i < numCourses; i++) {
adjcent[i] = new ArrayList<>();
}
for (int[] pairs : prerequisites) {
adjcent[pairs[1]].add(pairs[0]);
}
for (int i = 0; i < numCourses; i++) {
if (!dfs(adjcent, i, visit)) {
return false;
}
}
return true;
}
private boolean dfs(List<Integer>[] graph, int node, int[] visit) {
// Set 1: visited
// Set 0: unvisited
// Set -1: there is a conflict
if (visit[node] == 1) {
return true;
}
if (visit[node] == -1) {
return false;
}
visit[node] = -1;
for (int n : graph[node]) {
if (!dfs(graph, n, visit)) {
return false;
}
}
visit[node] = 1;
return true;
}
}
|