-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_array_strictly_increasing.cpp
33 lines (32 loc) · 1.25 KB
/
make_array_strictly_increasing.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
// Question LInk - https://leetcode.com/problems/make-array-strictly-increasing/description
// Solution
class Solution {
public:
int makeArrayIncreasing(vector<int>& arr1, vector<int>& arr2) {
sort(arr2.begin(), arr2.end());
unordered_map<int,int> dp;
dp[-1] = 0;
for(int i=0;i<arr1.size();i++)
{
unordered_map<int,int> new_dp;
for(auto itr = dp.begin(); itr != dp.end(); itr++)
{
if(arr1[i] > itr->first)
{
if(new_dp.find(arr1[i]) == new_dp.end()) new_dp[arr1[i]] = itr->second ;
else new_dp[arr1[i]] = min(new_dp[arr1[i]], itr->second);
}
int index = upper_bound(arr2.begin(), arr2.end(),itr->first)-arr2.begin();
if(index < arr2.size())
{
if(new_dp.find(arr2[index]) == new_dp.end()) new_dp[arr2[index]] = 1+itr->second;
else new_dp[arr2[index]] = min(new_dp[arr2[index]], 1+itr->second);
}
}
dp = new_dp;
}
int maxx = INT_MAX;
for(auto itr = dp.begin(); itr != dp.end(); itr++) maxx = min(maxx, itr->second);
return maxx==INT_MAX ? -1:maxx;
}
};