其他分享
首页 > 其他分享> > 和为K的连续子数组个数

和为K的连续子数组个数

作者:互联网

给定一个整数数组和一个整数 k,你需要找到该数组中和为 k 的连续的子数组的个数。

示例 1 :

输入:nums = [1,1,1], k = 2
输出: 2 , [1,1] 与 [1,1] 为两种不同的情况。
说明 :

数组的长度为 [1, 20,000]。
数组中元素的范围是 [-1000, 1000] ,且整数 k 的范围是 [-1e7, 1e7]。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subarray-sum-equals-k

 

class Solution {
public:
    int subarraySum(vector<int>& nums, int k) {
        unordered_map<int,int> p;
        int n=nums.size();
        int sum=0;
        int ans=0;
        p[0]=1;
        for(int i=0;i<n;i++)
        {
            sum+=nums[i];
            if(p.find(sum-k)!=p.end())
            {
                ans+=p[sum-k];
            }
            if(p.find(sum)!=p.end())//注意在后面跟新
            {
                p[sum]++;
            }
            else p[sum]=1;
        }
        return ans;
       
    }
};

 

标签:数组,nums,int,sum,个数,连续,1e7,1000
来源: https://www.cnblogs.com/Charls/p/12894005.html