forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.js
37 lines (36 loc) · 987 Bytes
/
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
/**
* @param {string} s
* @param {number} power
* @param {number} modulo
* @param {number} k
* @param {number} hashValue
* @return {string}
*/
var subStrHash = function (s, power, modulo, k, hashValue) {
power = BigInt(power);
modulo = BigInt(modulo);
hashValue = BigInt(hashValue);
const n = s.length;
let pk = 1n;
let ac = 0n;
// 倒序滑动窗口
for (let i = n - 1; i > n - 1 - k; i--) {
ac = (ac * power + getCode(s, i)) % modulo;
pk = (pk * power) % modulo;
}
let ans = -1;
if (ac == hashValue) {
ans = n - k;
}
for (let i = n - 1 - k; i >= 0; i--) {
let pre = (getCode(s, i + k) * pk) % modulo;
ac = (ac * power + getCode(s, i) - pre + modulo) % modulo;
if (ac == hashValue) {
ans = i;
}
}
return ans == -1 ? '' : s.substring(ans, ans + k);
};
function getCode(str, index) {
return BigInt(str.charCodeAt(index) - 'a'.charCodeAt(0) + 1);
}