Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create MinimumNumberofRemovalstoMakeMountainArray.java #33

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions Leetcode/MinimumNumberofRemovalstoMakeMountainArray.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/**
1671. Minimum Number of Removals to Make Mountain Array
Solved
Hard
Topics
Companies
Hint
You may recall that an array arr is a mountain array if and only if:

arr.length >= 3
There exists some index i (0-indexed) with 0 < i < arr.length - 1 such that:
arr[0] < arr[1] < ... < arr[i - 1] < arr[i]
arr[i] > arr[i + 1] > ... > arr[arr.length - 1]
Given an integer array nums​​​, return the minimum number of elements to remove to make nums​​​ a mountain array.
**/
class Solution {
public int minimumMountainRemovals(int[] nums) {
int n = nums.length;
int[] LIS = new int[n], LDS = new int[n];
Arrays.fill(LIS, 1);
Arrays.fill(LDS, 1);

// Compute LIS for each index
for (int i = 0; i < n; ++i) {
for (int j = 0; j < i; ++j) {
if (nums[i] > nums[j]) {
LIS[i] = Math.max(LIS[i], LIS[j] + 1);
}
}
}

// Compute LDS from each index
for (int i = n - 1; i >= 0; --i) {
for (int j = n - 1; j > i; --j) {
if (nums[i] > nums[j]) {
LDS[i] = Math.max(LDS[i], LDS[j] + 1);
}
}
}

int maxMountainLength = 0;

// Find the maximum mountain length
for (int i = 1; i < n - 1; ++i) {
if (LIS[i] > 1 && LDS[i] > 1) { // Valid peak
maxMountainLength = Math.max(maxMountainLength, LIS[i] + LDS[i] - 1);
}
}

return n - maxMountainLength;
}
}
Loading