Fruit Into Baskets Problem


Description

LeetCode Problem 904.

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 i^th 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:

1
2
3
Input: fruits = [1,2,1]
Output: 3
Explanation: We can pick from all 3 trees.

Example 2:

1
2
3
4
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:

1
2
3
4
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].

Example 4:

1
2
3
Input: fruits = [3,3,3,1,2,1,1,2,3,3,4]
Output: 5
Explanation: We can pick from trees [1,2,1,1,2].

Constraints:

  • 1 <= fruits.length <= 10^5
  • 0 <= fruits[i] < fruits.length


Sample C++ Code

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
class Solution {
public:
    int totalFruit(vector<int>& tree) {
        int basket1 = -1, basket2 = -1;
        int begin = 0, end = 0;
        int n = tree.size(), res = -1;
        
        for (end = 0; end < n; end++) {
            if (basket1 == -1) { 
                basket1 = tree[end]; 
                continue;
            }
            if (basket1 == tree[end]) 
                continue;
            if (basket2 == -1) { 
                basket2 = tree[end]; 
                continue;
            }
            if (basket2 == tree[end]) 
                continue;
            res = max(res, end - begin);
            begin = end - 1;
            while (begin >= 1 && tree[begin] == tree[begin-1]) 
                begin--;
            basket1 = tree[begin];
            basket2 = tree[end];
        }
        res = max(res, end - begin);
        
        return res;
    }
};




Related Posts

Fruit Into Baskets Problem

LeetCode 904. You are visiting a farm that has a...

Binary Subarrays With Sum Problem

LeetCode 930. Given a binary array nums and an integer...

Maximum Average Subarray I Problem

LeetCode 643. You are given an integer array nums consisting...

Sliding Window Maximum Problem

LeetCode 239. You are given an array of integersnums, there...

Contains Duplicate III Problem

LeetCode 220. Given an integer array nums and two integers...