-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.cpp
35 lines (35 loc) · 967 Bytes
/
Solution.cpp
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
class Solution {
public:
long long minCost(vector<int>& nums, vector<int>& costs) {
int n = nums.size();
vector<int> g[n];
stack<int> stk;
for (int i = n - 1; ~i; --i) {
while (!stk.empty() && nums[stk.top()] < nums[i]) {
stk.pop();
}
if (!stk.empty()) {
g[i].push_back(stk.top());
}
stk.push(i);
}
stk = stack<int>();
for (int i = n - 1; ~i; --i) {
while (!stk.empty() && nums[stk.top()] >= nums[i]) {
stk.pop();
}
if (!stk.empty()) {
g[i].push_back(stk.top());
}
stk.push(i);
}
vector<long long> f(n, 1e18);
f[0] = 0;
for (int i = 0; i < n; ++i) {
for (int j : g[i]) {
f[j] = min(f[j], f[i] + costs[j]);
}
}
return f[n - 1];
}
};