-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0904_totalFruit.cc
63 lines (56 loc) · 1.23 KB
/
Problem_0904_totalFruit.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <iostream>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
//找至多包含两种元素的最长子串,返回其长度
int totalFruit(vector<int> &fruits)
{
int left = 0, right = 0, ans = 0;
// a表示篮子1号,b表示篮子2号
int a = fruits[left], b = fruits[right];
int N = fruits.size();
while (right < N)
{
if (fruits[right] == b || fruits[right] == a)
{
ans = std::max(ans, right + 1 - left);
right++;
}
else
{
// 种类超过2种
left = right - 1;
// 更新第1个篮子
a = fruits[left];
while (left >= 1 && fruits[left - 1] == a)
{
// 符合条件的窗口回退
left--;
}
// 更新第2个篮子
b = fruits[right];
ans = std::max(ans, right + 1 - left);
}
}
return ans;
}
};
void testTotalFruit()
{
Solution s;
vector<int> f1 = {1, 2, 1};
vector<int> f2 = {0, 1, 2, 2};
vector<int> f3 = {1, 2, 3, 2, 2};
EXPECT_EQ_INT(3, s.totalFruit(f1));
EXPECT_EQ_INT(3, s.totalFruit(f2));
EXPECT_EQ_INT(4, s.totalFruit(f3));
EXPECT_SUMMARY;
}
int main()
{
testTotalFruit();
return 0;
}