-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
67 lines (62 loc) · 2.03 KB
/
main.go
File metadata and controls
67 lines (62 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Source: https://leetcode.com/problems/count-subarrays-with-score-less-than-k
// Title: Count Subarrays With Score Less Than K
// Difficulty: Hard
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// The **score** of an array is defined as the **product** of its sum and its length.
//
// - For example, the score of `[1, 2, 3, 4, 5]` is `(1 + 2 + 3 + 4 + 5) * 5 = 75`.
//
// Given a positive integer array `nums` and an integer `k`, return the **number of non-empty subarrays** of `nums` whose score is **strictly less** than `k`.
//
// A **subarray** is a contiguous sequence of elements within an array.
//
// **Example 1:**
//
// ```
// Input: nums = [2,1,4,3,5], k = 10
// Output: 6
// Explanation:
// The 6 subarrays having scores less than 10 are:
// - [2] with score 2 * 1 = 2.
// - [1] with score 1 * 1 = 1.
// - [4] with score 4 * 1 = 4.
// - [3] with score 3 * 1 = 3.
// - [5] with score 5 * 1 = 5.
// - [2,1] with score (2 + 1) * 2 = 6.
// Note that subarrays such as [1,4] and [4,3,5] are not considered because their scores are 10 and 36 respectively, while we need scores strictly less than 10.```
//
// **Example 2:**
//
// ```
// Input: nums = [1,1,1], k = 5
// Output: 5
// Explanation:
// Every subarray except [1,1,1] has a score less than 5.
// [1,1,1] has a score (1 + 1 + 1) * 3 = 9, which is greater than 5.
// Thus, there are 5 subarrays having scores less than 5.
// ```
//
// **Constraints:**
//
// - `1 <= nums.length <= 10^5`
// - `1 <= nums[i] <= 10^5`
// - `1 <= k <= 10^15`
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
// The score of an array is larger than all its subarray.
func countSubarrays(nums []int, k int64) int64 {
ans := int64(0)
left := -1
sum := 0
for i, num := range nums {
sum += num
for int64(sum)*int64(i-left) >= k {
left++
sum -= nums[left]
}
ans += int64(i - left)
}
return ans
}