LeetCode:904. Fruit Into Baskets

LeetCode:904. 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:

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:

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 <= tree.length <= 40000
  • 0 <= tree[i] < tree.length

解题思路

根据题目要求模拟。

AC 代码

class Solution {
    int totalFruitFrom(vector<int>& tree, int i)
    {
        int baskets[2] = {0, 0};
        int fruitType[2] = {-1, -1};

        for(int j = i; j < tree.size(); ++j)
        {
            if(tree[j] == fruitType[0])
            {
                ++baskets[0];
            }
            else if(tree[j] == fruitType[1])
            {
                ++baskets[1];
            }
            else if(fruitType[0] == -1)
            {
                fruitType[0] = tree[j];
                ++baskets[0];
            }
            else if(fruitType[1] == -1)
            {
                fruitType[1] = tree[j];
                ++baskets[1];
            }
            else
            {
                break;
            }
        }
        return baskets[0]+baskets[1];
    }
public:
    int totalFruit(vector<int>& tree) {
        int ans = 0;
        for(int i = 0; i < tree.size(); ++i)
        {
            if(i == 0) 
            {
                ans = totalFruitFrom(tree, i);
            }
            else if(tree[i] != tree[i-1])
            {
                ans = max(ans, totalFruitFrom(tree, i));
            }

        }

        return ans;
    }
};
全部评论

相关推荐

07-09 19:25
门头沟学院 Java
这是要把每一个投校招的都开盒吗?
26届之耻将大局逆转:裁人的时候一次性追回餐费
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-08 12:10
点赞 评论 收藏
分享
点赞 评论 收藏
分享
湫湫湫不会java:先投着吧,大概率找不到实习,没实习的时候再加个项目,然后把个人评价和荣誉奖项删了,赶紧成为八股战神吧,没实习没学历,秋招机会估计不多,把握机会。或者说秋招时间去冲实习,春招冲offer,但是压力会比较大
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-10 14:10
啊啊啊啊好幸福,妈妈是我找工作发疯前的一束光
榕城小榕树:你是我见过最幸福的牛客男孩
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务