Skip to content

Commit 0dd659b

Browse files
authored
Update time-needed-to-inform-all-employees.cpp
1 parent a6dcb23 commit 0dd659b

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

C++/time-needed-to-inform-all-employees.cpp

+31
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,38 @@
11
// Time: O(n)
22
// Space: O(n)
33

4+
// dfs solution with stack
45
class Solution {
6+
public:
7+
int numOfMinutes(int n, int headID, vector<int>& manager, vector<int>& informTime) {
8+
unordered_map<int, vector<int>> children;
9+
for (int i = 0; i < manager.size(); ++i) {
10+
if (manager[i] != -1) {
11+
children[manager[i]].emplace_back(i);
12+
}
13+
}
14+
15+
int result = 0;
16+
vector<pair<int, int>> stk = {{headID, 0}};
17+
while (!stk.empty()) {
18+
auto [node, curr] = stk.back(); stk.pop_back();
19+
curr += informTime[node];
20+
result = max(result, curr);
21+
if (!children.count(node)) {
22+
continue;
23+
}
24+
for (const auto& child : children.at(node)) {
25+
stk.emplace_back(child, curr);
26+
}
27+
}
28+
return result;
29+
}
30+
};
31+
32+
// Time: O(n)
33+
// Space: O(n)
34+
// dfs solution with recursion
35+
class Solution2 {
536
public:
637
int numOfMinutes(int n, int headID, vector<int>& manager, vector<int>& informTime) {
738
unordered_map<int, vector<int>> children;

0 commit comments

Comments
 (0)