題目連結

把 prefix sum 放在 map 裡面!

AC Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifdef LOCAL
#include <bits/stdc++.h>
using namespace std;

// tree node stuff here...
#endif

static int __initialSetup = []()
{
    std::ios::sync_with_stdio(false);
    cin.tie(NULL);
    return 0;
}
();

// handle special cases first
// [], "", ...
// range of input?
class Solution
{
public:
    int subarraySum(vector<int> &nums, int k)
    {
        unordered_map<int, int> pre;
        pre[0]++;
        int sum = 0, ans = 0;
        for (auto i : nums) {
            sum += i;
            if (pre.count(sum - k) > 0)
                ans += pre[sum - k];

            pre[sum]++;
        }

        return ans;
    }
};

#ifdef LOCAL
int main()
{
    return 0;
}
#endif