-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path690.Employee-Importance.java
47 lines (42 loc) · 1.13 KB
/
690.Employee-Importance.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
// https://leetcode.com/problems/employee-importance/
//
// algorithms
// Easy (55.3%)
// Total Accepted: 56,702
// Total Submissions: 102,529
/*
// Employee info
class Employee {
// It's the unique id of each node;
// unique id of this employee
public int id;
// the importance value of this employee
public int importance;
// the id of direct subordinates
public List<Integer> subordinates; // 直属下属
};
*/
class Solution {
public int getImportance(List<Employee> employees, int id) {
HashMap<Integer, Employee> map = new HashMap<>();
for (Employee e : employees) {
map.put(e.id, e);
}
int res = 0;
LinkedList<Integer> q = new LinkedList<>();
q.add(id);
while (!q.isEmpty()) {
int curId = q.pollFirst();
Employee e = map.get(curId);
if (e != null) {
res += e.importance;
if (e.subordinates != null) {
for (int n : e.subordinates) {
q.add(n);
}
}
}
}
return res;
}
}