[LeetCode]Fruit Into Baskets

栏目: 编程工具 · 发布时间: 6年前

内容简介:In a row of trees, theYouNote 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.

原题

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

题解

该题属于双指针(Two Pointers)范畴,主要的思路是利用两个指针来构造一个滑动窗口,且要求窗口中的元素类型不得超过2种。所以,经过一遍for循环,即可拿到所有不超过两个类型元素的窗口长度,即拿到其中最大的长度。

所以,难度在于怎么来构造这个窗口。这里,我们可以巧妙的利用映射(Map)这种数据结构,用映射来维护for循环过程中,经过的数据类型总数,以及每种类型的个数。

以原题中第一个案例为例,在第一次for循环中,我们将第一个元素加入到map中,如下:

map m;

m.insert(make_pair(1, 1)); // 第一个元素代表类型为1,第二个元素代表类型为1的出现的个数

同时,可以很容易的拿到某时刻的状态信息:

m.size(); // 当前不同类型的总数

m.find(1)->second; // 类型为1的出现的次数

代码

class Solution {
    public:
        int totalFruit(vector<int>& tree) {
            map<int, int> m;
            map<int, int>::iterator it;
            int l = 0, r = 0, len = tree.size(), a = 0;
            while (r < len) {
                if (m.size() <= 2) {
                    it = m.find(tree[r]);
                    if (it != m.end()) {
                        it->second++;
                        m.insert(make_pair(tree[r], it->second + 1));
                    } else {
                        m.insert(make_pair(tree[r], 1));
                    }
                    r++;
                    if (a < r - l) a = r - l;
                } else {
                    it = m.find(tree[l]);
                    m.erase(tree[l]);
                    if (it->second != 1) {
                        m.erase(tree[l]);
                        m.insert(make_pair(tree[l], it->second - 1));
                        it = m.find(tree[l]);
                    }
                    l++; 
                }
            }
            return a;
        }
};

原题: https://leetcode.com/problems/fruit-into-baskets/description/

Github 源码: https://github.com/GenialX/leetcode-cpp/blob/master/2018/09/fruit-into-baskets.cpp

文章来源: 胡小旭 =>  [LeetCode]Fruit Into Baskets


以上所述就是小编给大家介绍的《[LeetCode]Fruit Into Baskets》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

IT不再重要

IT不再重要

(美)尼古拉斯·卡尔 / 闫鲜宁 / 中信出版社 / 2008-10 / 29.00元

在这部跨越历史、经济和技术领域的著作中,作者从廉价的电力运营方式对社会变革的深刻影响延伸到互联网对我们生活的这个世界的重构性影响。他批判式的认为,企业想应用网络或应用程序,不再需要自建资料中心、自组IT团队维护和管理系统,因为互联网就像自来水或电力一样,可由专门公司提供服务,你可以付费使用。而如果他的设想真的会实现,我们的世界将会变成什么样子?IT产业的命运又将如何?这又对企业的IT领域投资产生什......一起来看看 《IT不再重要》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

MD5 加密
MD5 加密

MD5 加密工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具