-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1371.cpp
46 lines (39 loc) · 1.09 KB
/
1371.cpp
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
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
int findTheLongestSubstring(string s) {
unordered_map<string, int> mp;
vector<int> vec(5, 0);
string st = "00000";
mp[st] = -1; // Handle case where substring starts from index 0
int result = 0;
for (int i = 0; i < s.length(); i++) {
// Update the vector based on the current character
if (s[i] == 'a') {
vec[0] = (vec[0] + 1) % 2;
} else if (s[i] == 'e') {
vec[1] = (vec[1] + 1) % 2;
} else if (s[i] == 'i') {
vec[2] = (vec[2] + 1) % 2;
} else if (s[i] == 'o') {
vec[3] = (vec[3] + 1) % 2;
} else if (s[i] == 'u') {
vec[4] = (vec[4] + 1) % 2;
}
// Construct the string representation of the vector
st = "";
for (int j = 0; j < 5; j++) {
st += to_string(vec[j]);
}
// Check if this state has been seen before
if (mp.find(st) != mp.end()) {
result = max(result, i - mp[st]);
} else {
mp[st] = i;
}
}
return result;
}
};
int main() { return 0; }