java.lang.Object
g1301_1400.s1343_number_of_sub_arrays_of_size_k_and_average_greater_than_or_equal_to_threshold.Solution

public class Solution extends Object
1343 - Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold.<p>Medium</p> <p>Given an array of integers <code>arr</code> and two integers <code>k</code> and <code>threshold</code>, return <em>the number of sub-arrays of size</em> <code>k</code> <em>and average greater than or equal to</em> <code>threshold</code>.</p> <p><strong>Example 1:</strong></p> <p><strong>Input:</strong> arr = [2,2,2,2,5,5,5,8], k = 3, threshold = 4</p> <p><strong>Output:</strong> 3</p> <p><strong>Explanation:</strong> 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).</p> <p><strong>Example 2:</strong></p> <p><strong>Input:</strong> arr = [11,13,17,23,29,31,7,5,2,3], k = 3, threshold = 5</p> <p><strong>Output:</strong> 6</p> <p><strong>Explanation:</strong> The first 6 sub-arrays of size 3 have averages greater than 5. Note that averages are not integers.</p> <p><strong>Constraints:</strong></p> <ul> <li><code>1 <= arr.length <= 10<sup>5</sup></code></li> <li><code>1 <= arr[i] <= 10<sup>4</sup></code></li> <li><code>1 <= k <= arr.length</code></li> <li><code>0 <= threshold <= 10<sup>4</sup></code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • numOfSubarrays

      public int numOfSubarrays(int[] arr, int k, int threshold)