内容简介: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:
- 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
题解
该题属于双指针(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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深入理解计算机系统(英文版·第2版)
[美] Randal E. Bryant、[美] David R. O'Hallaron / 机械工业出版社 / 2011-1 / 128.00元
本书是一本将计算机软件和硬件理论结合讲述的经典教程,内容覆盖计算机导论、体系结构和处理器设计等多门课程。本书的最大优点是为程序员描述计算机系统的实现细节,通过描述程序是如何映射到系统上,以及程序是如何执行的,使读者更好地理解程序的行为为什么是这样的,以及造成效率低下的原因。 相对于第1版,本版主要是反映了过去十年间硬件技术和编译器的变化,具体更新如下: 1. 对系统的介绍(特别是实际使......一起来看看 《深入理解计算机系统(英文版·第2版)》 这本书的介绍吧!