-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCourse_Schedule.cpp
68 lines (63 loc) · 2.02 KB
/
Course_Schedule.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
class Solution {
public:
bool hasCycle(int course, vector<vector<int> >& adj, vector<bool>& visited) {
visited[course] = true;
for(int i = 0; i < (int)adj[course].size(); ++i) {
if(visited[adj[course][i]]) {
return true;
}
if(hasCycle(adj[course][i], adj, visited)) {
return true;
}
}
visited[course] = false;
return false;
}
enum Color {
WHITE, GREY, BLACK
};
bool hasCycle2(int course, vector<vector<int>> const& adj, vector<int>& color) {
color[course] = GREY;
for(int i = 0; i < (int)adj[course].size(); ++i) {
int neigh = adj[course][i];
if(color[neigh] == GREY) {
return true;
}
if(color[neigh] == WHITE) {
if(hasCycle2(neigh, adj, color)) {
return true;
}
}
}
color[course] = BLACK;
return false;
}
bool canFinish(int numCourses, vector<pair<int, int>>& prerequisites) {
if(numCourses < 1) return true;
vector<vector<int> > adj;
adj.resize(numCourses);
int edges = prerequisites.size();
for(int i = 0; i < edges; ++i) {
int u = prerequisites[i].first;
int v = prerequisites[i].second;
adj[u].push_back(v);
}
vector<bool> visited(numCourses, false);
vector<int> color(numCourses, WHITE);
/*
for(int course = 0; course < numCourses; ++course) {
if(!visited[course]) {
if(hasCycle(course, adj, visited))
return false;
}
}
*/
for(int course = 0; course < numCourses; ++course) {
if(color[course] == WHITE) {
if(hasCycle2(course, adj, color))
return false;
}
}
return true;
}
};