560. 和為K的子陣列(字首樹+hash)
阿新 • • 發佈:2021-07-07
給定一個整數陣列和一個整數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> lutMap; int len = nums.size(); int pre = 0; int res = 0; lutMap[0] = 1; for(int i = 0; i < len; i++) { pre += nums[i]; if(lutMap.find(pre - k)!=lutMap.end()) { res+=lutMap[pre-k]; } lutMap[pre]++; } return res; } };