666. Path Sum IV

题目

If the depth of a tree is smaller than 5, then this tree can be represented by a list of three-digits integers.

For each integer in this list:

  1. The hundreds digit represents the depth D of this node, 1 <= D <= 4.
  2. The tens digit represents the position P of this node in the level it belongs to, 1 <= P <= 8. The position is the same as that in a full binary tree.
  3. The units digit represents the value V of this node, 0 <= V <= 9.

Given a list of ascending three-digits integers representing a binary with the depth smaller than 5. You need to return the sum of all paths from the root towards the leaves.

Example 1:

Input: [113, 215, 221]
Output: 12
Explanation: 
The tree that the list represents is:
    3
   / \
  5   1

The path sum is (3 + 5) + (3 + 1) = 12.

Example 2:

Input: [113, 221]
Output: 4
Explanation: 
The tree that the list represents is: 
    3
     \
      1

The path sum is (3 + 1) = 4.

思路

为了便于查找方便,我们首先将每个节点映射到一个哈希表中,其中key是节点的位置,value是节点的值。由于符合满二叉树的性质,所以我们很容易根据一个父结点的key找到它的两个左右子孩子所对应的节点。这样这个问题就和其它的path sum问题没有区别了。

class Solution {
public:
    int pathSum(vector<int>& nums) {
        unordered_map<int, int> hash;
        for (auto num : nums) {
            int hundreds = num / 100;
            int tens = (num % 100) / 10;
            int units = num % 10;
            hash[num - units] = units;
        }
        int hundreds = nums[0] / 100;
        int tens = (nums[0] % 100) / 10;
        int total_sum = 0;
        pathSum(hundreds, tens, 0, total_sum, hash);
        return total_sum;
    }
private:
    void pathSum(int hundreds, int tens, int sum, int &total_sum,
                 unordered_map<int, int> &hash) {
        sum += hash[hundreds * 100 + tens * 10];
        int left = hash.count((hundreds + 1) * 100 + (2 * tens - 1) * 10);
        int right = hash.count((hundreds + 1) * 100 + (2 * tens) * 10);
        if (left == 0 && right == 0) {      // this node is a leaf
            total_sum += sum;
            return;
        }
        if (left != 0) {
            pathSum(hundreds + 1, 2 * tens - 1, sum, total_sum, hash);
        }
        if (right != 0) {
            pathSum(hundreds + 1, 2 * tens, sum, total_sum, hash);
        }
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值