904 Fruit Into Baskets
904. Fruit Into Baskets
1. Question
n a row of trees, thei
-th tree produces fruit with type tree[i]
.
You start at any tree of your choice, then repeatedly perform the following steps:
Add one piece of fruit from this tree to your baskets. If you cannot, stop.
Move to the next tree to the right of the current tree. If there is no tree to the right, stop.
Note that you do not have any choice after the initial choice of starting tree: you must perform step 1, then step 2, then back to step 1, then step 2, and so on until you stop.
You have two baskets, and each basket can carry any quantity of fruit, but you want each basket to only carry one type of fruit each.
What is the total amount of fruit you can collect with this procedure?
Example 1:
Example 2:
Example 3:
Example 4:
Note:
1 <= tree.length <= 40000
0 <= tree[i] < tree.length
2. Implementation
(1) Two Pointer + Hash
思路: 维护一个sliding window, 用buckets数组记录当前sliding windows中不同水果的数量,当水果类型大于2时,移动start指针,调整sliding window使得水果类型变成2,最后用res记录最长的满足条件的sliding window
3. Time & Space Complexity
Two Pointer + Hash: 时间复杂度O(n), 空间复杂度O(1)
Last updated
Was this helpful?