-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1136.parallel-courses.py
More file actions
65 lines (62 loc) · 1.65 KB
/
1136.parallel-courses.py
File metadata and controls
65 lines (62 loc) · 1.65 KB
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
#
# @lc app=leetcode id=1136 lang=python3
#
# [1136] Parallel Courses
#
# Difficulty: Medium
# Frequency: 63.4%
# Tags: Graph Theory, Topological Sort
# URL: https://leetcode.com/problems/parallel-courses/
#
# --- Problem Description ---
#
# You are given an integer n, which indicates that there are n courses labeled
# from 1 to n. You are also given an array relations where relations[i] =
# [prevCoursei, nextCoursei], representing a prerequisite relationship between
# course prevCoursei and course nextCoursei: course prevCoursei has to be
# taken before course nextCoursei.
#
# In one semester, you can take any number of courses as long as you have
# taken all the prerequisites in the previous semester for the courses you are
# taking.
#
# Return the minimum number of semesters needed to take all courses. If there
# is no way to take all the courses, return -1.
#
#
#
# Example 1:
#
# Input: n = 3, relations = [[1,3],[2,3]]
# Output: 2
# Explanation: The figure above represents the given graph.
# In the first semester, you can take courses 1 and 2.
# In the second semester, you can take course 3.
#
# Example 2:
#
# Input: n = 3, relations = [[1,2],[2,3],[3,1]]
# Output: -1
# Explanation: No course can be studied because they are prerequisites of each
# other.
#
#
#
# Constraints:
#
# - 1 <= n <= 5000
# - 1 <= relations.length <= 5000
# - relations[i].length == 2
# - 1 <= prevCoursei, nextCoursei <= n
# - prevCoursei != nextCoursei
# - All the pairs [prevCoursei, nextCoursei] are unique.
#
#
# --- Community Solutions ---
#
# https://leetcode.com/problems/parallel-courses/solutions
#
# @lc code=start
class Solution:
pass
# @lc code=end