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

LeetCode 663. Equal Tree Partition

时间:2019-06-12 01:12:32      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:which   init   vat   hashmap   return   values   treenode   pre   range   

原题链接在这里:https://leetcode.com/problems/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.

Note:

  1. The range of tree node value is in the range of [-100000, 100000].
  2. 1 <= n <= 10000

题解:

Calculate sum of each subtree. Check if there is a subtree‘s sum is half of whole tree.

Use a HashMap to maintain sum value of subtree and its frequency.

Since there is edge case that sum == 0. sum/2 is also 0. Thus there must be more than one occurance of subtree having 0 sum.

Time Complexity: O(n). GetSum() takes O(n).

Space: O(n).

AC Java:

 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 class Solution {
11     public boolean checkEqualTree(TreeNode root) {
12         if(root == null){
13             return true;
14         }
15         
16         HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
17         int sum = getSum(root, hm);
18         if(sum == 0){
19             return hm.get(sum/2) > 1;
20         }
21         
22         return sum%2==0 && hm.containsKey(sum/2);
23     }
24     
25     private int getSum(TreeNode root, HashMap<Integer, Integer> hm){
26         if(root == null){
27             return 0;
28         }
29         
30         int sum = getSum(root.left, hm) + root.val + getSum(root.right, hm);
31         hm.put(sum, hm.getOrDefault(sum, 0)+1);
32         return sum;
33     }
34 }

 

LeetCode 663. Equal Tree Partition

标签:which   init   vat   hashmap   return   values   treenode   pre   range   

原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/11007071.html

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