-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKillProcess582.cpp
More file actions
53 lines (40 loc) · 1.55 KB
/
KillProcess582.cpp
File metadata and controls
53 lines (40 loc) · 1.55 KB
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
/*
You have n processes forming a rooted tree structure. You are given two integer arrays pid and ppid, where pid[i] is the ID of the ith process and ppid[i] is the ID of the ith process's parent process.
Each process has only one parent process but may have multiple children processes. Only one process has ppid[i] = 0, which means this process has no parent process (the root of the tree).
When a process is killed, all of its children processes will also be killed.
Given an integer kill representing the ID of a process you want to kill, return a list of the IDs of the processes that will be killed. You may return the answer in any order.
Example 1:
Input: pid = [1,3,10,5], ppid = [3,0,5,3], kill = 5
Output: [5,10]
Explanation: The processes colored in red are the processes that should be killed.
Example 2:
Input: pid = [1], ppid = [0], kill = 1
Output: [1]
Constraints:
n == pid.length
n == ppid.length
1 <= n <= 5 * 104
1 <= pid[i] <= 5 * 104
0 <= ppid[i] <= 5 * 104
Only one process has no parent.
All the values of pid are unique.
kill is guaranteed to be in pid.
*/
class Solution {
public:
unordered_map<int,unordered_set< int>>child;
unordered_set<int>k;
void go (int i) {
if (k.count(i)) return;
k.insert(i);
for (auto& it: child[i]) go (it);
}
vector<int> killProcess(vector<int>& pid, vector<int>& ppid, int kill) {
for (int i = 0; i < pid.size(); i++) {
child[ppid[i]].insert(pid[i]);
}
go (kill);
vector<int>ans(k.begin(), k.end());
return ans;
}
};