Fruit Into Baskets

In a row of trees, the i-th tree produces fruit with type tree[i].

You start at any tree of your choice, then repeatedly perform the following steps:

  1. Add one piece of fruit from this tree to your baskets.  If you cannot, stop.
  2. 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:

Input: [1,2,1]
Output: 3
Explanation: We can collect [1,2,1].

Example 2:

Input: [0,1,2,2]
Output: 3
Explanation: We can collect [1,2,2].
If we started at the first tree, we would only collect [0, 1].

Example 3:

Input: [1,2,3,2,2]
Output: 4
Explanation: We can collect [2,3,2,2].
If we started at the first tree, we would only collect [1, 2].

Example 4:

Input: [3,3,3,1,2,1,1,2,3,3,4]
Output: 5
Explanation: We can collect [1,2,1,1,2].
If we started at the first tree or the eighth tree, we would only collect 4 fruits.

 

Note:

  1. 1 <= tree.length <= 40000
  2. 0 <= tree[i] < tree.length

Solution:

class Solution {    
    public int totalFruit(int[] tree) {
        int n = tree.length;
        Map<Integer, Integer> map = new HashMap();
        int j = 0, i = 0, type = 0, len = 0;
        while (j < n) {
            int in = tree[j ++];
            map.put(in, map.getOrDefault(in, 0) + 1);
            if (map.get(in) == 1) type ++;
            while (type > 2) {
                int out = tree[i ++];
                map.put(out, map.get(out) - 1);
                if (map.get(out) == 0) { 
                    map.remove(out);
                    type --;
                }
            }
            len = Math.max(len, j - i);
        }
        return len;
    }
    
//     public int totalFruit(int[] tree) {
//         dfs(tree, -1, -1, 0, 0, 0);
//         return max;
//     }
    
//     private void dfs(int[] tree, int t1, int t2, int m, int n, int i) {
//         if (i == tree.length) { 
//             max = Math.max(max, m + n);
//             return;
//         }
//         if (t1 == -1) {
//             dfs(tree, tree[i], t2, m + 1, n, i + 1);
//             dfs(tree, t1, t2, m, n, i + 1);
//         } else if (t1 == tree[i]) {
//             dfs(tree, t1, t2, m + 1, n, i + 1);
//         } else if (t2 == -1) {
//             dfs(tree, t1, tree[i], m, n + 1, i + 1);
//         } else if (t2 == tree[i]) {
//             dfs(tree, t1, t2, m, n + 1, i + 1);
//         } else {
//             max = Math.max(max, m + n);
//         }
//     }
}