Given a binary tree with n
nodes, your task is to check if it's possible to partition the tree to two trees which have the equal sum of values after removing exactly one edge on the original tree.
Example 1:
Input: 5 / \ 10 10 / \ 2 3 Output: True Explanation: 5 / 10 Sum: 15 10 / \ 2 3 Sum: 15
Example 2:
Input: 1 / \ 2 10 / \ 2 20 Output: False Explanation: You can't split the tree into two trees with equal sum after removing exactly one edge on the tree.
Note:
Intuition and Algorithm
\nAfter removing some edge from parent
to child
, (where the child
cannot be the original root
) the subtree rooted at child
must be half the sum of the entire tree.
Let\'s record the sum of every subtree. We can do this recursively using depth-first search. After, we should check that half the sum of the entire tree occurs somewhere in our recording (and not from the total of the entire tree.)
\nOur careful treatment and analysis above prevented errors in the case of these trees:
\n0\n / \\\n-1 1\n\n 0\n \\\n 0\n
Complexity Analysis
\nTime Complexity: where is the number of nodes in the input tree. We traverse every node.
\nSpace Complexity: , the size of seen
and the implicit call stack in our DFS.
Analysis written by: @awice.
\n