Skip to content

1445. Number Of Sub Arrays Of Size K And Average Greater Than Or Equal To Threshold

Difficulty: Medium

LeetCode Problem View on GitHub


1445. Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold

Medium


Given an array of integers arr and two integers k and threshold, return the number of sub-arrays of size k and average greater than or equal to threshold.

 

Example 1:

Input: arr = [2,2,2,2,5,5,5,8], k = 3, threshold = 4
Output: 3
Explanation: Sub-arrays [2,5,5],[5,5,5] and [5,5,8] have averages 4, 5 and 6 respectively. All other sub-arrays of size 3 have averages less than 4 (the threshold).

Example 2:

Input: arr = [11,13,17,23,29,31,7,5,2,3], k = 3, threshold = 5
Output: 6
Explanation: The first 6 sub-arrays of size 3 have averages greater than 5. Note that averages are not integers.

 

Constraints:

  • 1 <= arr.length <= 105
  • 1 <= arr[i] <= 104
  • 1 <= k <= arr.length
  • 0 <= threshold <= 104

Solution

class Solution {
    public int numOfSubarrays(int[] arr, int k, int threshold) {
        int n = arr.length;
        long sum = 0; int count = 0;
        for (int i = 0; i < k; i++) sum += arr[i];
        if (sum / k >= threshold) count++;
        int start = 0;
        for (int i = k; i < n; i++) {
            sum += arr[i];
            sum -= arr[start++];
            if (sum / k >= threshold) count++;
        }
        return count;
    }
}

Complexity Analysis

  • Time Complexity: O(?)
  • Space Complexity: O(?)

Approach

Detailed explanation of the approach will be added here