-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2385. Amount of Time for Binary Tree to Be Infected.cpp
101 lines (83 loc) · 2.72 KB
/
2385. Amount of Time for Binary Tree to Be Infected.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left),
* right(right) {}
* };
*/
class Solution {
private:
TreeNode* createMapping(TreeNode* root, int start,
unordered_map<TreeNode*, TreeNode*>& nodeToParent) {
TreeNode* targetNode = NULL;
queue<TreeNode*> q;
q.push(root);
nodeToParent[root] = NULL;
while (!q.empty()) {
int size = q.size();
for (int i = 0; i < size; i++) {
TreeNode* front = q.front();
q.pop();
if (front->val == start) {
targetNode = front;
}
if (front->left) {
q.push(front->left);
nodeToParent[front->left] = front;
}
if (front->right) {
q.push(front->right);
nodeToParent[front->right] = front;
}
}
}
return targetNode;
}
int infectTree(TreeNode* root,
unordered_map<TreeNode*, TreeNode*> nodeToParent) {
int ans = 0;
unordered_map<TreeNode*, bool> visited;
queue<TreeNode*> q;
q.push(root);
visited[root] = true;
while (!q.empty()) {
bool flag = 0;
int size = q.size();
for (int i = 0; i < size; i++) {
TreeNode* front = q.front();
q.pop();
if (front->left && !visited[front->left]) {
flag = 1;
visited[front->left] = 1;
q.push(front->left);
}
if (front->right && !visited[front->right]) {
flag = 1;
visited[front->right] = 1;
q.push(front->right);
}
if (nodeToParent[front] && !visited[nodeToParent[front]]) {
flag = 1;
visited[nodeToParent[front]] = 1;
q.push(nodeToParent[front]);
}
}
if (flag) {
ans++;
}
}
return ans;
}
public:
int amountOfTime(TreeNode* root, int start) {
// create node to parent mapping
unordered_map<TreeNode*, TreeNode*> nodeToParent;
TreeNode* targetNode = createMapping(root, start, nodeToParent);
return infectTree(targetNode, nodeToParent);
}
};