-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0647_countSubstrings.cc
79 lines (72 loc) · 1.37 KB
/
Problem_0647_countSubstrings.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <iostream>
#include <vector>
#include "UnitTest.h"
using namespace std;
// TODO: figure it out
// Manacher 算法
class Solution
{
public:
int countSubstrings(string s)
{
if (s.length() == 0)
{
return 0;
}
vector<int> dp = getManacherDP(s);
int ans = 0;
for (int i = 0; i < dp.size(); i++)
{
ans += (dp[i] >> 1);
}
return ans;
}
vector<int> getManacherDP(string s)
{
string str = manacherString(s);
vector<int> pArr(str.length());
int C = -1;
int R = -1;
for (int i = 0; i < str.length(); i++)
{
pArr[i] = R > i ? std::min(pArr[2 * C - i], R - i) : 1;
while (i + pArr[i] < str.size() && i - pArr[i] > -1)
{
if (str[i + pArr[i]] == str[i - pArr[i]])
pArr[i]++;
else
{
break;
}
}
if (i + pArr[i] > R)
{
R = i + pArr[i];
C = i;
}
}
return pArr;
}
string manacherString(string str)
{
string res(str.length() * 2 + 1, ' ');
int index = 0;
for (int i = 0; i != res.length(); i++)
{
res[i] = (i & 1) == 0 ? '#' : str[index++];
}
return res;
}
};
void testCountSubstrings()
{
Solution s;
EXPECT_EQ_INT(3, s.countSubstrings("abc"));
EXPECT_EQ_INT(6, s.countSubstrings("aaa"));
EXPECT_SUMMARY;
}
int main()
{
testCountSubstrings();
return 0;
}