forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
course-schedule-iv.py
52 lines (46 loc) · 1.53 KB
/
course-schedule-iv.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
# Time: O(n^3)
# Space: O(n^2)
class Solution(object):
def checkIfPrerequisite(self, n, prerequisites, queries):
"""
:type n: int
:type prerequisites: List[List[int]]
:type queries: List[List[int]]
:rtype: List[bool]
"""
def floydWarshall(n, graph):
reachable = set(map(lambda x: x[0]*n+x[1], graph))
for k in xrange(n):
for i in xrange(n):
for j in xrange(n):
if i*n+j not in reachable and (i*n+k in reachable and k*n+j in reachable):
reachable.add(i*n+j)
return reachable
reachable = floydWarshall(n, prerequisites)
return [i*n+j in reachable for i, j in queries]
# Time: O(n * q)
# Space: O(p + n)
import collections
class Solution2(object):
def checkIfPrerequisite(self, n, prerequisites, queries):
"""
:type n: int
:type prerequisites: List[List[int]]
:type queries: List[List[int]]
:rtyp
"""
graph = collections.defaultdict(list)
for u, v in prerequisites:
graph[u].append(v)
result = []
for i, j in queries:
stk, lookup = [i], set([i])
while stk:
node = stk.pop()
for nei in graph[node]:
if nei in lookup:
continue
stk.append(nei)
lookup.add(nei)
result.append(j in lookup)
return result