前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Fruit Into Baskets #算法#

Fruit Into Baskets #算法#

作者头像
梦飞
发布2022-06-23 11:22:57
1700
发布2022-06-23 11:22:57
举报
文章被收录于专栏:csdn文章同步

原题如下

In a row of trees, the i-th tree produces fruit with type tree[i]. 有一行树,第i棵树产出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? 简单来说就是要找出数组中的最长连续元素的长度,这个序列只能由两个不相等的数字组成,比如“1,1,2,2”或“2,3,2,3”等。

代码语言:javascript
复制
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].
其中只包含两个不同数字的连续序列有两个,{0,1},{1,2,2},后者更长,长度为3。

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

思路

从左向右遍历,用两个变量type_one,type_two来记录当前的两种水果的类型,当遇到第三种类型时,就改变某一个type,每次记录序列的开始,然后计算该序列结束时的长度;每次遇到更大的长度则更新长度最大值,直到结束。

代码如下

代码语言:javascript
复制
class Solution {
public:
    int totalFruit(vector<int>& tree) {
        int start = 0; //记录每次符合条件的序列的开始位置 
        int total = 0; //记录最大长度 
        int type_one = -1; // 水果种类1 
        int type_two = -1; // 水果种类2 
        int index_1 = 0; // 从左向右遍历时水果种类1的最后一次出现的下标,用来确定下一次的start 
        int index_2 = 0; // 同上 
        int i = 0;
        for(i = 0; i < tree.size(); i++){
			// 一开始 
            if(type_one == -1) type_one = tree[i];
            // 开始遇到第二种类型的水果 
            else if(type_two == -1 && tree[i] != type_one){
                type_two = tree[i];
                index_2 = i;
            }
            // 遇到第一种类型的水果,更新其index 
            else if(tree[i] == type_one){
                index_1 = i;
            }
            // 遇到第二种类型的水果,更新其index 
            else if(tree[i] == type_two){
                index_2 = i;
            }
            // 遇到第三种类型的水果 
            else if(tree[i] != type_one && tree[i] != type_two){
            	// 计算当前最长长度 
                total = max(total, i - start);
                // 根据较小index确定下一start,并更新水果类型及其index 
                if(index_1 <= index_2){
                    start = index_1 + 1;
                    type_one = tree[i];
                    index_1 = i;
                }
                else{
                    start = index_2 + 1;
                    type_two = tree[i];
                    index_2 = i;
                }
            }
        } 
        return max(total, i - start);
    }
};

其他解法参考:leedCode

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-10-21,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 原题如下
  • 思路
  • 代码如下
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档