You are visiting a farm that has a single row of fruit trees arranged from left to right. The trees are represented by an integer array fruits where fruits[i] is the type of fruit the ith tree produces.
You want to collect as much fruit as possible. However, the owner has some strict rules that you must follow:
You only have two baskets, and each basket can only hold a single type of fruit. There is no limit on the amount of fruit each basket can hold.
Starting from any tree of your choice, you must pick exactly one fruit from every tree (including the start tree) while moving to the right. The picked fruits must fit in one of your baskets.
Once you reach a tree with fruit that cannot fit in your baskets, you must stop.
Given the integer array fruits, return the maximum number of fruits you can pick.
Example 1:
Input: fruits = [1,2,1]
Output: 3
Explanation: We can pick from all 3 trees.
Example 2:
Input: fruits = [0,1,2,2]
Output: 3
Explanation: We can pick from trees [1,2,2].
If we had started at the first tree, we would only pick from trees [0,1].
Example 3:
Input: fruits = [1,2,3,2,2]
Output: 4
Explanation: We can pick from trees [2,3,2,2].
If we had started at the first tree, we would only pick from trees [1,2].
Constraints:
1 <= fruits.length <= 105
0 <= fruits[i] < fruits.length
Solutions
Solution 1: Hash Table + Sliding Window
Thinking
We need the longest subarray with at most two fruit types. \(n\le 10^5\), so enumerating endpoints and recounting types is too slow. After the right end absorbs a fruit, the left end must move if the window has more than two types.
A counter tracks frequencies; the number of keys is the number of types. Shrink from the left while that exceeds \(2\), and keep the maximum window length.
We use a hash table \(cnt\) to maintain the types and corresponding quantities of fruits in the current window, and use two pointers \(j\) and \(i\) to maintain the left and right boundaries of the window.
We traverse the \(\textit{fruits}\) array, add the current fruit \(x\) to the window, i.e., \(cnt[x]++\), then judge whether the types of fruits in the current window exceed \(2\). If it exceeds \(2\), we need to move the left boundary \(j\) of the window to the right until the types of fruits in the window do not exceed \(2\). Then we update the answer, i.e., \(ans = \max(ans, i - j + 1)\).
After the traversal ends, we can get the final answer.
Method 1 shrinks the window and updates the answer on every step, yet only the maximum length is required, so shorter historical windows can be ignored. Grow the window monotonically: when a third type appears, advance the left end once. The final \(n-j\) is the largest feasible window.
In Solution 1, we find that the window size sometimes increases and sometimes decreases, which requires us to update the answer each time.
But what this problem actually asks for is the maximum number of fruits, that is, the "largest" window. We don't need to shrink the window, we just need to let the window monotonically increase. So the code omits the operation of updating the answer each time, and only needs to return the size of the window as the answer after the traversal ends.
The time complexity is \(O(n)\), and the space complexity is \(O(n)\), where \(n\) is the length of the \(\textit{fruits}\) array.