-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.ts
32 lines (32 loc) · 933 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
function minCost(nums: number[], costs: number[]): number {
const n = nums.length;
const g: number[][] = Array.from({ length: n }, () => []);
const stk: number[] = [];
for (let i = n - 1; i >= 0; --i) {
while (stk.length && nums[stk[stk.length - 1]] < nums[i]) {
stk.pop();
}
if (stk.length) {
g[i].push(stk[stk.length - 1]);
}
stk.push(i);
}
stk.length = 0;
for (let i = n - 1; i >= 0; --i) {
while (stk.length && nums[stk[stk.length - 1]] >= nums[i]) {
stk.pop();
}
if (stk.length) {
g[i].push(stk[stk.length - 1]);
}
stk.push(i);
}
const f: number[] = Array.from({ length: n }, () => Infinity);
f[0] = 0;
for (let i = 0; i < n; ++i) {
for (const j of g[i]) {
f[j] = Math.min(f[j], f[i] + costs[j]);
}
}
return f[n - 1];
}