|
| 1 | +<h2><a href="https://leetcode.com/problems/find-x-sum-of-all-k-long-subarrays-ii">3592. Find X-Sum of All K-Long Subarrays II</a></h2><h3>Hard</h3><hr><p>You are given an array <code>nums</code> of <code>n</code> integers and two integers <code>k</code> and <code>x</code>.</p> |
| 2 | + |
| 3 | +<p>The <strong>x-sum</strong> of an array is calculated by the following procedure:</p> |
| 4 | + |
| 5 | +<ul> |
| 6 | + <li>Count the occurrences of all elements in the array.</li> |
| 7 | + <li>Keep only the occurrences of the top <code>x</code> most frequent elements. If two elements have the same number of occurrences, the element with the <strong>bigger</strong> value is considered more frequent.</li> |
| 8 | + <li>Calculate the sum of the resulting array.</li> |
| 9 | +</ul> |
| 10 | + |
| 11 | +<p><strong>Note</strong> that if an array has less than <code>x</code> distinct elements, its <strong>x-sum</strong> is the sum of the array.</p> |
| 12 | + |
| 13 | +<p>Return an integer array <code>answer</code> of length <code>n - k + 1</code> where <code>answer[i]</code> is the <strong>x-sum</strong> of the <span data-keyword="subarray-nonempty">subarray</span> <code>nums[i..i + k - 1]</code>.</p> |
| 14 | + |
| 15 | +<p> </p> |
| 16 | +<p><strong class="example">Example 1:</strong></p> |
| 17 | + |
| 18 | +<div class="example-block"> |
| 19 | +<p><strong>Input:</strong> <span class="example-io">nums = [1,1,2,2,3,4,2,3], k = 6, x = 2</span></p> |
| 20 | + |
| 21 | +<p><strong>Output:</strong> <span class="example-io">[6,10,12]</span></p> |
| 22 | + |
| 23 | +<p><strong>Explanation:</strong></p> |
| 24 | + |
| 25 | +<ul> |
| 26 | + <li>For subarray <code>[1, 1, 2, 2, 3, 4]</code>, only elements 1 and 2 will be kept in the resulting array. Hence, <code>answer[0] = 1 + 1 + 2 + 2</code>.</li> |
| 27 | + <li>For subarray <code>[1, 2, 2, 3, 4, 2]</code>, only elements 2 and 4 will be kept in the resulting array. Hence, <code>answer[1] = 2 + 2 + 2 + 4</code>. Note that 4 is kept in the array since it is bigger than 3 and 1 which occur the same number of times.</li> |
| 28 | + <li>For subarray <code>[2, 2, 3, 4, 2, 3]</code>, only elements 2 and 3 are kept in the resulting array. Hence, <code>answer[2] = 2 + 2 + 2 + 3 + 3</code>.</li> |
| 29 | +</ul> |
| 30 | +</div> |
| 31 | + |
| 32 | +<p><strong class="example">Example 2:</strong></p> |
| 33 | + |
| 34 | +<div class="example-block"> |
| 35 | +<p><strong>Input:</strong> <span class="example-io">nums = [3,8,7,8,7,5], k = 2, x = 2</span></p> |
| 36 | + |
| 37 | +<p><strong>Output:</strong> <span class="example-io">[11,15,15,15,12]</span></p> |
| 38 | + |
| 39 | +<p><strong>Explanation:</strong></p> |
| 40 | + |
| 41 | +<p>Since <code>k == x</code>, <code>answer[i]</code> is equal to the sum of the subarray <code>nums[i..i + k - 1]</code>.</p> |
| 42 | +</div> |
| 43 | + |
| 44 | +<p> </p> |
| 45 | +<p><strong>Constraints:</strong></p> |
| 46 | + |
| 47 | +<ul> |
| 48 | + <li><code>nums.length == n</code></li> |
| 49 | + <li><code>1 <= n <= 10<sup>5</sup></code></li> |
| 50 | + <li><code>1 <= nums[i] <= 10<sup>9</sup></code></li> |
| 51 | + <li><code>1 <= x <= k <= nums.length</code></li> |
| 52 | +</ul> |
0 commit comments