-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
36 lines (36 loc) · 1.04 KB
/
Solution.java
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
class Solution {
public long minCost(int[] nums, int[] costs) {
int n = nums.length;
List<Integer>[] g = new List[n];
Arrays.setAll(g, k -> new ArrayList<>());
Deque<Integer> stk = new ArrayDeque<>();
for (int i = n - 1; i >= 0; --i) {
while (!stk.isEmpty() && nums[stk.peek()] < nums[i]) {
stk.pop();
}
if (!stk.isEmpty()) {
g[i].add(stk.peek());
}
stk.push(i);
}
stk.clear();
for (int i = n - 1; i >= 0; --i) {
while (!stk.isEmpty() && nums[stk.peek()] >= nums[i]) {
stk.pop();
}
if (!stk.isEmpty()) {
g[i].add(stk.peek());
}
stk.push(i);
}
long[] f = new long[n];
Arrays.fill(f, 1L << 60);
f[0] = 0;
for (int i = 0; i < n; ++i) {
for (int j : g[i]) {
f[j] = Math.min(f[j], f[i] + costs[j]);
}
}
return f[n - 1];
}
}