-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathEmployeeImportance.java
52 lines (40 loc) · 1.26 KB
/
EmployeeImportance.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
50
51
52
package leetcode;
import java.util.*;
/**
* Created by nikoo28 on 12/17/17 12:37 AM
*/
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 EmployeeImportance {
public int getImportance(List<Employee> employees, int id) {
int totalImportance = 0;
Map<Integer, Employee> idEmployeeMap = new HashMap<>();
for (Employee employee : employees) {
idEmployeeMap.put(employee.id, employee);
}
Employee primeEmployee = idEmployeeMap.get(id);
Queue<Employee> employeeTree = new LinkedList<>();
employeeTree.add(primeEmployee);
while (!employeeTree.isEmpty()) {
int levelSize = employeeTree.size();
for (int i = 0; i < levelSize; i++) {
Employee candidate = employeeTree.remove();
totalImportance += candidate.importance;
if (candidate.subordinates.size() > 0) {
for (Integer childTreeNode : candidate.subordinates) {
Employee childEmployee = idEmployeeMap.get(childTreeNode);
employeeTree.add(childEmployee);
}
}
}
}
return totalImportance;
}
}