forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.ts
36 lines (36 loc) · 982 Bytes
/
Solution.ts
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
function count(
num1: string,
num2: string,
min_sum: number,
max_sum: number,
): number {
const mod = 1e9 + 7;
let f: number[][] = Array(23)
.fill(0)
.map(() => Array(220).fill(-1));
let num = num2;
const dfs = (pos: number, s: number, limit: boolean): number => {
if (pos >= num.length) {
return s >= min_sum && s <= max_sum ? 1 : 0;
}
if (!limit && f[pos][s] !== -1) {
return f[pos][s];
}
let ans = 0;
const up = limit ? +num[pos] : 9;
for (let i = 0; i <= up; i++) {
ans = (ans + dfs(pos + 1, s + i, limit && i === up)) % mod;
}
if (!limit) {
f[pos][s] = ans;
}
return ans;
};
let ans = dfs(0, 0, true);
num = (BigInt(num1) - 1n).toString();
f = Array(23)
.fill(0)
.map(() => Array(220).fill(-1));
ans = (ans - dfs(0, 0, true) + mod) % mod;
return ans;
}