-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
61 lines (57 loc) · 1.39 KB
/
solution.cpp
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
53
54
55
56
57
58
59
60
61
/*
// Definition for Employee.
class Employee {
public:
int id;
int importance;
vector<int> subordinates;
};
*/
/**
* 108 / 108 test cases passed
* Runtime: 32 ms
* Memory Usage: 13.6 MB
*/
class Solution {
public:
int dfs( unordered_map<int, Employee*>& store, int id ) {
int ipt = store[id]->importance;
for ( int& employeeId : store[id]->subordinates ) {
ipt += dfs( store, employeeId );
}
return ipt;
}
int getImportance(vector<Employee*>& employees, int id) {
unordered_map<int, Employee*> store;
for ( auto& employee : employees) {
store[ employee->id ] = employee;
}
return dfs( store, id );
}
};
/**
* 108 / 108 test cases passed
* Runtime: 36 ms
* Memory Usage: 13.7 MB
*/
class Solution2 {
public:
int getImportance(vector<Employee*> employees, int id) {
unordered_map<int, Employee*> store;
for (auto& employee: employees) {
store[employee->id] = employee;
}
int ans = 0;
queue<Employee*> que;
que.push(store[id]);
while (!que.empty()) {
vector<int> subordinates = que.front()->subordinates;
ans += que.front()->importance;
que.pop();
for (auto& subId: subordinates) {
que.push(store[subId]);
}
}
return ans;
}
};