Given an array A of integers, return the number of (contiguous, non-empty) subarrays that have a sum divisible by K.数组
Example 1:code
Input: A = [4,5,0,-2,-3,1], K = 5
Output: 7
Explanation: There are 7 subarrays with a sum divisible by K = 5:
[4, 5, 0, -2, -3, 1], [5], [5, 0], [5, 0, -2, -3], [0], [0, -2, -3], [-2, -3]leetcode
来源:力扣(LeetCode)
连接:https://leetcode-cn.com/problems/subarray-sums-divisible-by-kget
1.负数求余
Sum = ((Sum % Mod) + Mod) % Mod;
2.同余定理应用
子数组和可否被K整除 转化为
(preSum[j] - preSum[i-1]) mod K == 0
根据同余定理,转化为
preSum[j] mod K == preSum[i-1] mod K
it
class Solution { public: int subarraysDivByK(vector<int>& A, int K) { map <int,int> Map = {{0 , 1}}; //预置边界状况,第0项为1 int ans = 0; int preSum = 0; for (int elem: A){ preSum += elem; preSum = ((preSum % K) + K) % K; //负数取模的处理 ans += Map[preSum]; Map[preSum]++; } return ans; } };