-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourseSchedule.py
52 lines (48 loc) · 1.69 KB
/
courseSchedule.py
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
# There are a total of n courses you have to take, labeled from 0 to n - 1.
#
# Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: [0,1]
#
# Given the total number of courses and a list of prerequisite pairs, is it possible for you to finish all courses?
#
# For example:
#
# 2, [[1,0]]
#
# There are a total of 2 courses to take. To take course 1 you should have finished course 0. So it is possible.
#
# 2, [[1,0],[0,1]]
#
# 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.
#
# Note:
# The input prerequisites is a graph represented by a list of edges, not adjacency matrices. Read more about how a graph is represented.
class Solution(object):
def canFinish(self, numCourses, prerequisites):
"""
:type numCourses: int
:type prerequisites: List[List[int]]
:rtype: bool
"""
visited = [False] * numCourses
checked = [False] * numCourses
mypreq = {}
for k,v in prerequisites:
mypreq[k] = mypreq.get(k, []) + [v]
def DFS(k):
if checked[k]:
return True
if visited[k]:
return False
visited[k] = True
finishable = True
for p in mypreq.get(k,[]):
finishable = finishable and DFS(p)
if finishable:
checked[k] = True
return True
else:
return False
for i in range(numCourses):
if not DFS(i):
return False
return True