663. Equal Tree Partition

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.

 

 

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool checkEqualTree(TreeNode* root) {
         int sum = computeTreeSum(root);
         if(sum==0) return cnts[0]>1;
         return sum%2==0&&cnts[sum/2]>0?true:false;
    }
private:
    int computeTreeSum(TreeNode *root)
    {
        if(!root) return 0;
        int sum = root->val+computeTreeSum(root->left)+computeTreeSum(root->right);
        cnts[sum]++;
        return sum;
    }
    unordered_map<int, int> cnts;
};

 

posted @ 2017-11-24 09:57  jxr041100  阅读(245)  评论(0编辑  收藏  举报