forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cs
41 lines (39 loc) · 1.01 KB
/
Solution.cs
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
public class Solution {
private int n;
private List<int>[] g;
private IList<IList<int>> ans;
public IList<IList<int>> GetAncestors(int n, int[][] edges) {
g = new List<int>[n];
this.n = n;
for (int i = 0; i < n; i++) {
g[i] = new List<int>();
}
foreach (var e in edges) {
g[e[0]].Add(e[1]);
}
ans = new List<IList<int>>();
for (int i = 0; i < n; ++i) {
ans.Add(new List<int>());
}
for (int i = 0; i < n; ++i) {
BFS(i);
}
return ans;
}
private void BFS(int s) {
Queue<int> q = new Queue<int>();
q.Enqueue(s);
bool[] vis = new bool[n];
vis[s] = true;
while (q.Count > 0) {
int i = q.Dequeue();
foreach (int j in g[i]) {
if (!vis[j]) {
vis[j] = true;
q.Enqueue(j);
ans[j].Add(s);
}
}
}
}
}