[Leetcode] Math & Dynamic

[Leetcode] Math & Dynamic

In this blog, I try to explain how to solve two similar question about Math & Dynamic. The idea in these two question is pretty similar, if you have mastered how to solve one of these two questions, you will feel it easy to solve another.

Subarray Sum Equals K

Subarray Sum Equals K

Analysis

In this question, you have to get the number of continuous subarrays whose sum equals to K. Pay attention to that the description of question doesn’t emphasize the size of the subarray so it will be valid if the size of subarray just be 1. The easy solution is by brutal force. By looping the array in two-layer, you can have all of the subarrays the array generates, then just sum them up to check if they equal to K. But it takes a bit more time. The other solution is dynamic programming. By defining T(n) as the sum of subarray which starts at beginning of the array and ends at the index n, then we get know the sum of array[i : n] is T(n) - T(i). SO, things are easy now. We can just check if T(n) - T(i) equals to K. There is one more trick we need to know. We can store all of the T(i) in a map. The key in map stands for the sum of the subarray, and the value in the map represents the num of such sum. Then the num of subarray which equals to K is map[T(n) - T(i)].

Stary 2017-11-04 at 9.55.54 A

Code

The detail of algorithm can be found in the code. K = 0 is a special situation, you have to consider carefully about how to dealing with the situation when K = 0.

class Solution {
public:
    int subarraySum(vector<int>& nums, int k) {
        unordered_map<int, int> hash;
        int sum = 0;
        int result = 0;
        int mod = 0;
        for (int i = 0; i < nums.size(); i++) {
            sum += nums[i];
            mod = k == 0 ? sum : sum - k;
            result += hash[mod];
            hash[sum] += 1;
            if (sum == k) {
                result += 1;
            }
        }
        return result;
    }
};

Time complexity: O(n)

Continuous Subarray Sum

Continuous Subarray Sum

Analysis

This question is similar to the above one. You can try to think about that by using the idea which I have described. What you have to know is the size of subarray must be at least 2. There is a trick which you have to store pre in the map instead of storing sum directly.

Stary 2017-11-04 at 10.09.27 A

Code

class Solution {
public:
    bool checkSubarraySum(vector<int>& nums, int k) {
        unordered_set<int> hash;
        int sum = 0, pre = 0;
        for (int i = 0; i < nums.size(); i++) {
            sum += nums[i];
            int mod = k == 0 ? sum : sum % k;
            if (hash.count(mod)) { return true; }
            hash.insert(pre);
            pre = mod;
        }
        return false;
    }
};

Time complexity: O(n)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值