码迷,mamicode.com
首页 > 其他好文 > 详细

663. Equal Tree Partition

时间:2017-11-24 15:11:34      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:output   ble   ++   value   sum   als   nod   int   code   

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;
};

 

663. Equal Tree Partition

标签:output   ble   ++   value   sum   als   nod   int   code   

原文地址:http://www.cnblogs.com/jxr041100/p/7889160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!