forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.js
31 lines (31 loc) · 964 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
/**
* @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) {
let h = BigInt(0),
p = BigInt(1);
const n = s.length;
const mod = BigInt(modulo);
for (let i = n - 1; i >= n - k; --i) {
const val = BigInt(s.charCodeAt(i) - 'a'.charCodeAt(0) + 1);
h = (((h * BigInt(power)) % mod) + val) % mod;
if (i !== n - k) {
p = (p * BigInt(power)) % mod;
}
}
let j = n - k;
for (let i = n - k - 1; i >= 0; --i) {
const pre = BigInt(s.charCodeAt(i + k) - 'a'.charCodeAt(0) + 1);
const cur = BigInt(s.charCodeAt(i) - 'a'.charCodeAt(0) + 1);
h = ((((h - ((pre * p) % mod) + mod) * BigInt(power)) % mod) + cur) % mod;
if (Number(h) === hashValue) {
j = i;
}
}
return s.substring(j, j + k);
};