930. 和相同的二元子数组
Posted yuhong1103
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了930. 和相同的二元子数组相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 int numSubarraysWithSum(vector<int>& nums, int k) 5 { 6 unordered_map<int,int> hash;// 和+次数 7 hash[0] = 1; 8 9 int res = 0,sum = 0; 10 for(int i = 0;i < nums.size();i ++) 11 { 12 sum += nums[i]; 13 res += hash[sum - k]; 14 hash[sum]++; 15 } 16 17 return res; 18 } 19 };
以上是关于930. 和相同的二元子数组的主要内容,如果未能解决你的问题,请参考以下文章
[M前缀和] lc930. 和相同的二元子数组(滑动窗口+双指针+哈希优化)
LeetCode 930 和相同的二元子数组[动态规划 前缀和] HERODING的LeetCode之路
Leetcode-930 Binary Subarrays With Sum(和相同的二元子数组)
930. 和相同的二元子数组/238. 除自身以外数组的乘积/1262. 可被三整除的最大和/NC90 设计getMin功能的栈/NC67连续子数组的最大和/NC115 栈和排序