2023-01-19 Daily Challenge
Today I have done leetcode's January LeetCoding Challenge with cpp
.
January LeetCoding Challenge 19
Description
Subarray Sums Divisible by K
Given an integer array nums
and an integer k
, return the number of non-empty subarrays that have a sum divisible by k
.
A subarray is a contiguous part of an array.
Example 1:
Input: nums = [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]
Example 2:
Input: nums = [5], k = 9 Output: 0
Constraints:
1 <= nums.length <= 3 * 104
-104 <= nums[i] <= 104
2 <= k <= 104
Solution
class Solution {
public:
int subarraysDivByK(vector<int>& nums, int k) {
int cnt[k];
memset(cnt, 0, sizeof(cnt));
int sum = 0;
int answer = 0;
cnt[0] = 1;
for(auto i : nums) {
sum = ((sum + i) % k + k) % k;
answer += cnt[sum];
cnt[sum] += 1;
}
return answer;
}
};
// Accepted
// 73/73 cases passed (40 ms)
// Your runtime beats 97.32 % of cpp submissions
// Your memory usage beats 98.91 % of cpp submissions (29.6 MB)