930. Binary Subarrays With Sum
Problem description:
In an array A of 0s and 1s, how many non-empty subarrays have sum S?
Example 1:
1 | Input: A = [1,0,1,0,1], S = 2 |
Note:
A.length <= 30000
0 <= S <= A.length
A[i] is either 0 or 1.
Solution:
In this question, we can apply the idea of two sum. The difference between this question and the original two sum is, this question is an array of 1 and 0. What we can do is to find all the prefix sum and the total sum on each index i
, and then find the complement
in the map.
The reason to use prefix sum is because, if we want to find a subarray sum[i:j]
, we can solve it like this:
1 | sum[i:j]= A[i]+ A[i+1]+ ... A[j] |
One thing to notice is that, we need to put every possible complement
subarray into consideration. That is the reason why we need to check the following code.
1 | if(map.find(cur- S) != map.end()){ |
1 | class Solution { |
time complexity: $O(n)$
space complexity: $O(n)$
reference:
https://goo.gl/QXnJ5U
https://goo.gl/tNeBxR