-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_17.05_findLongestSubarray.cc
63 lines (58 loc) · 1.37 KB
/
Problem_17.05_findLongestSubarray.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 <cctype>
#include <iostream>
#include <iterator>
#include <string>
#include <unordered_map>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
// 利用前缀和
vector<string> findLongestSubarray(vector<string>& array)
{
int N = array.size();
vector<int> sum(N + 1);
for (int i = 0; i < N; i++)
{
sum[i + 1] = sum[i] + (isalpha(array[i][0]) ? 1 : -1);
}
int begin = 0;
int end = 0;
// 前缀和,下标
unordered_map<int, int> map;
for (int i = 0; i <= N; i++)
{
auto it = map.find(sum[i]);
if (it == map.end())
{
map[sum[i]] = i;
}
else if (i - it->second > end - begin)
{
// 当前子串长度更长
begin = it->second;
end = i;
}
}
return {array.begin() + begin, array.begin() + end};
}
};
void testFindLongestSubarray()
{
Solution s;
vector<string> n1 = {"A", "1", "B", "C", "D", "2", "3", "4", "E", "5",
"F", "G", "6", "7", "H", "I", "J", "K", "L", "M"};
vector<string> o1 = {"A", "1", "B", "C", "D", "2", "3", "4", "E", "5", "F", "G", "6", "7"};
vector<string> n2 = {"A", "A"};
vector<string> o2;
EXPECT_TRUE(o1 == s.findLongestSubarray(n1));
EXPECT_TRUE(o2 == s.findLongestSubarray(n2));
EXPECT_SUMMARY;
}
int main()
{
testFindLongestSubarray();
return 0;
}