g0201_0300.s0207_course_schedule.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0207_course_schedule;
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Depth_First_Search
// #Breadth_First_Search #Graph #Topological_Sort
import java.util.ArrayList;
@SuppressWarnings("unchecked")
public class Solution {
private static final int WHITE = 0;
private static final int GRAY = 1;
private static final int BLACK = 2;
public boolean canFinish(int numCourses, int[][] prerequisites) {
ArrayList[] adj = new ArrayList[numCourses];
for (int i = 0; i < numCourses; i++) {
adj[i] = new ArrayList<>();
}
for (int[] pre : prerequisites) {
adj[pre[1]].add(pre[0]);
}
int[] colors = new int[numCourses];
for (int i = 0; i < numCourses; i++) {
if (colors[i] == WHITE && !adj[i].isEmpty() && hasCycle(adj, i, colors)) {
return false;
}
}
return true;
}
private boolean hasCycle(ArrayList[] adj, int node, int[] colors) {
colors[node] = GRAY;
for (int nei : adj[node]) {
if (colors[nei] == GRAY) {
return true;
}
if (colors[nei] == WHITE && hasCycle(adj, nei, colors)) {
return true;
}
}
colors[node] = BLACK;
return false;
}
}