-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1462-course-schedule-4.dart
46 lines (39 loc) · 1009 Bytes
/
1462-course-schedule-4.dart
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
class Solution {
List<bool> checkIfPrerequisite(
int numCourses, List<List<int>> prerequisites, List<List<int>> queries) {
List<List<bool>> graph =
List.generate(numCourses, (_) => List.filled(numCourses, false));
for (var prereq in prerequisites) {
graph[prereq[0]][prereq[1]] = true;
}
for (int k = 0; k < numCourses; k++) {
for (int i = 0; i < numCourses; i++) {
for (int j = 0; j < numCourses; j++) {
graph[i][j] = graph[i][j] || (graph[i][k] && graph[k][j]);
}
}
}
return queries.map((query) => graph[query[0]][query[1]]).toList();
}
}
void main() {
final solution = Solution();
print(solution.checkIfPrerequisite(2, [
[1, 0]
], [
[0, 1],
[1, 0]
])); // [false,true]
print(solution.checkIfPrerequisite(2, [], [
[1, 0],
[0, 1]
])); // [false,false]
print(solution.checkIfPrerequisite(3, [
[1, 2],
[1, 0],
[2, 0]
], [
[1, 0],
[1, 2]
])); // [true,true]
}