LeetCode: 974. Subarray Sums Divisible by K

Medium

Given an array A of integers, return the number of (contiguous, non-empty) subarrays that have a sum divisible by K.

Example 1:

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]

Note:

  1. 1 <= A.length <= 30000
  2. -10000 <= A[i] <= 10000
  3. 2 <= K <= 10000

解法:(前缀和)

具体解释见https://blog.csdn.net/tomwillow/article/details/86558665

    public static int subarraysDivByK(int[] A, int K) {
        // init prefix sum
        int[] prefixSum = new int[A.length + 1] ;
        for(int i=0; i<A.length; i++) {
            prefixSum[i+1] = prefixSum[i] + A[i] ;
        }
        
        // init remainder map
        Integer[] remainderMap = new Integer[K] ; // key: the remainder; value: the times of remainder
        for(int i=0; i<prefixSum.length; i++) {
            int r = (prefixSum[i]%K + K) % K ;
            if(remainderMap[r] == null) {
                remainderMap[r] = 0 ;
            }
            remainderMap[r]++ ;
        }
        
        // calculate possibilities
        int ans = 0 ;
        for(Integer times : remainderMap) {
            if(times == null) {
                continue ;
            }
            
            ans += times*(times-1)/2 ;
        }
        
        return ans ;
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值