[LeetCode] 1343. Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold
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
大小为 K 且平均值大于等于阈值的子数组数目。
给你一个整数数组 arr 和两个整数 k 和 threshold 。请你返回长度为 k 且平均值大于等于 threshold 的子数组数目。
思路
这道题是一道窗口尺寸固定的滑动窗口题。注意尽量不要在中间过程求平均值因为会涉及到精度问题。在过程中我们可以只求数字的 sum,不求平均值,到最后再计算平均值。
复杂度
时间O(n)
空间O(1)
代码
Java实现
class Solution { public int numOfSubarrays(int[] arr, int k, int threshold) { int n = arr.length; int sum = 0; for (int i = 0; i < k; i++) { sum += arr[i]; } int res = 0; if (sum >= threshold * k) { res++; } for (int i = k; i < n; i++) { sum += arr[i]; sum -= arr[i - k]; if (sum >= threshold * k) { res++; } } return res; } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
· .NET周刊【3月第1期 2025-03-02】
2020-11-10 [LeetCode] 746. Min Cost Climbing Stairs
2020-11-10 [LeetCode] 1026. Maximum Difference Between Node and Ancestor
2019-11-10 [LeetCode] 143. Reorder List
2019-11-10 [LeetCode] 234. Palindrome Linked List
2019-11-10 [LeetCode] 21. Merge Two Sorted Lists
2019-11-10 [LeetCode] 160. Intersection of Two Linked Lists
2019-11-10 [LeetCode] 148. Sort List