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
|
#include <array>
#include <string>
using std::string;
class Solution {
public:
static int dfs(const std::string &s, int start, int end, int k) {
if (end - start < k) {
return 0;
}
std::array<int, 26> counts{0};
for (int i = start; i < end; i++) {
counts[s[i] - 'a']++;
}
int max = -1;
for (char c = 'a'; c <= 'z'; c++) {
int count = counts[c - 'a'];
if (count > 0 && count < k) {
int sub_start = start;
for (int i = start; i < end; i++) {
if (s[i] == c) {
if (sub_start != i) {
max = std::max(dfs(s, sub_start, i, k), max);
}
sub_start = i + 1;
}
}
if (sub_start != end) {
max = std::max(dfs(s, sub_start, end, k), max);
}
break; // This is vital.
}
}
if (max == -1)
return end - start;
else
return max;
}
int longestSubstring(string s, int k) { return dfs(s, 0, s.size(), k); }
};
int main() {
Solution{}.longestSubstring("aaaaaaaaaaaabcdefghijklmnopqrstuvwzyz", 3);
return 0;
}
|