-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.js
83 lines (73 loc) · 1.5 KB
/
solution.js
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
80
81
82
83
/**
* @param {string} s
* @return {number}
*/
const countSubstrings = (s) => { // Manacher's algorithm
let modifiedString = '#';
for (let i = 0; i < s.length; i++) {
modifiedString += s[i] + '#';
}
const n = modifiedString.length;
const P = new Array(n).fill(0);
let center = 0, right = 0;
let count = 0;
for (let i = 0; i < n; i++) {
if (i <= right) {
const mirror = 2 * center - i;
P[i] = Math.min(right - i, P[mirror]);
}
let leftIndex = i - (1 + P[i]);
let rightIndex = i + (1 + P[i]);
while (leftIndex >= 0 && rightIndex < n && modifiedString[leftIndex] === modifiedString[rightIndex]) {
P[i]++;
leftIndex--;
rightIndex++;
}
if (i + P[i] > right) {
center = i;
right = i + P[i];
}
count += Math.ceil(P[i] / 2);
}
return count;
};
// const countSubstrings = (s) => {
// let l = 0, r = 0, count = 0;
//
// while (l <= r) {
// if (undefined === s[r]) {
// l++;
// continue;
// }
//
// if (isPalidrome(s.slice(l, r + 1))) {
// count++;
// }
//
// r++;
//
// if (r === s.length) {
// l++;
// r = l;
// }
// }
//
// console.log("count")
// console.log(count)
//
// return count;
// }
//
// const isPalidrome = (str) => {
// let x = 0, y = str.length - 1;
// while (x <= y) {
// if (str[x] !== str[y]) return false;
// x++;
// y--;
// }
//
// return true;
// }
countSubstrings("aaa")
countSubstrings("abcb")
countSubstrings("qrwrw")