-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path210.Course-Schedule-II.java
49 lines (44 loc) · 1.45 KB
/
210.Course-Schedule-II.java
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
// https://leetcode.com/problems/course-schedule/
//
// algorithms
// Medium (34.53%)
// Total Accepted: 143,237
// Total Submissions: 414,869
class Solution {
public int[] findOrder(int numCourses, int[][] prerequisites) {
int[] res = new int[numCourses];
int[] indegree = new int[numCourses];
HashMap<Integer, List<Integer>> map = new HashMap<>();
for (int i = 0; i < prerequisites.length; i++) {
int source = prerequisites[i][1], target = prerequisites[i][0];
if (map.containsKey(source)) {
map.get(source).add(target);
} else {
ArrayList<Integer> l = new ArrayList<>();
l.add(target);
map.put(source, l);
}
indegree[target]++;
}
for (int i = 0; i < numCourses; i++) {
int zeroInEdgeIdx = -1;
for (int j = 0; j < numCourses; j++) {
if (indegree[j] == 0) {
zeroInEdgeIdx = j;
break;
}
}
if (zeroInEdgeIdx == -1) {
return new int[]{};
}
res[i] = zeroInEdgeIdx;
indegree[zeroInEdgeIdx] = -1;
if (map.containsKey(zeroInEdgeIdx)) {
for (int v : map.get(zeroInEdgeIdx)) {
indegree[v]--;
}
}
}
return res;
}
}