3679. Minimum Discards to Balance Inventory
Description
You are given two integers w and m, and an integer array arrivals, where arrivals[i] is the type of item arriving on day i (days are 1-indexed).
Items are managed according to the following rules:
- Each arrival may be kept or discarded; an item may only be discarded on its arrival day.
 - For each day 
i, consider the window of days[max(1, i - w + 1), i](thewmost recent days up to dayi):- For any such window, each item type may appear at most 
mtimes among kept arrivals whose arrival day lies in that window. - If keeping the arrival on day 
iwould cause its type to appear more thanmtimes in the window, that arrival must be discarded. 
 - For any such window, each item type may appear at most 
 
Return the minimum number of arrivals to be discarded so that every w-day window contains at most m occurrences of each type.
Example 1:
Input: arrivals = [1,2,1,3,1], w = 4, m = 2
Output: 0
Explanation:
- On day 1, Item 1 arrives; the window contains no more than 
moccurrences of this type, so we keep it. - On day 2, Item 2 arrives; the window of days 1 - 2 is fine.
 - On day 3, Item 1 arrives, window 
[1, 2, 1]has item 1 twice, within limit. - On day 4, Item 3 arrives, window 
[1, 2, 1, 3]has item 1 twice, allowed. - On day 5, Item 1 arrives, window 
[2, 1, 3, 1]has item 1 twice, still valid. 
There are no discarded items, so return 0.
Example 2:
Input: arrivals = [1,2,3,3,3,4], w = 3, m = 2
Output: 1
Explanation:
- On day 1, Item 1 arrives. We keep it.
 - On day 2, Item 2 arrives, window 
[1, 2]is fine. - On day 3, Item 3 arrives, window 
[1, 2, 3]has item 3 once. - On day 4, Item 3 arrives, window 
[2, 3, 3]has item 3 twice, allowed. - On day 5, Item 3 arrives, window 
[3, 3, 3]has item 3 three times, exceeds limit, so the arrival must be discarded. - On day 6, Item 4 arrives, window 
[3, 4]is fine. 
Item 3 on day 5 is discarded, and this is the minimum number of arrivals to discard, so return 1.
Constraints:
1 <= arrivals.length <= 1051 <= arrivals[i] <= 1051 <= w <= arrivals.length1 <= m <= w
Solutions
Solution 1: Simulation + Sliding Window
We use a hash map \(\textit{cnt}\) to record the quantity of each item type in the current window, and an array \(\textit{marked}\) to record whether each item is kept.
We iterate through the array from left to right. For each item \(x\):
- If the current day \(i\) is greater than or equal to the window size \(w\), we subtract \(\textit{marked}[i - w]\) from the count of the leftmost item in the window (if that item was kept).
 - If the quantity of the current item in the window exceeds \(m\), we discard the item.
 - Otherwise, we keep the item and increment its count.
 
Finally, the answer is the number of items discarded.
The time complexity is \(O(n)\), and the space complexity is \(O(n)\), where \(n\) is the length of the array.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  |  | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  |  | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22  |  | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17  |  | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20  |  |