Burning Tree 2
1. Given a binary tree and target.Input Format
2. Find the minimum time required to burn the complete binary tree if the target is set on fire.
3. It is known that in 1 second all nodes connected to a given node get burned. That is, its left child, right child and parent.
Input is managed for you.Output Format
Output is managed for you.Question Video
1. The number of nodes in the tree is in the range [1, 10000].Sample Input
2. -1000 <= Node.val <= 1000
3. All the values Node.val are unique.
4. target is the value of one of the nodes in the tree.
15Sample Output
4
2
1
-1
-1
3
-1
-1
6
5
-1
-1
7
-1
-1
2
2
1 3 4
6
5 7
-
Asked in Companies
-
Related Topics
Video Solution
Code Solution
{ }
{ }
Run