-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1671-minimum-number-mountain.dart
53 lines (45 loc) · 1.35 KB
/
1671-minimum-number-mountain.dart
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import 'dart:math';
class Solution {
int minimumMountainRemovals(List<int> nums) {
int n = nums.length;
// Step 1: Compute LIS from the left for each index
List<int> lis = List<int>.filled(n, 1);
for (int i = 1; i < n; i++) {
for (int j = 0; j < i; j++) {
if (nums[i] > nums[j]) {
lis[i] = max(lis[i], lis[j] + 1);
}
}
}
// Step 2: Compute LDS from the right for each index
List<int> lds = List<int>.filled(n, 1);
for (int i = n - 2; i >= 0; i--) {
for (int j = n - 1; j > i; j--) {
if (nums[i] > nums[j]) {
lds[i] = max(lds[i], lds[j] + 1);
}
}
}
// Step 3: Find the maximum mountain length
int maxMountainLength = 0;
for (int i = 1; i < n - 1; i++) {
if (lis[i] > 1 && lds[i] > 1) {
maxMountainLength = max(maxMountainLength, lis[i] + lds[i] - 1);
}
}
// Step 4: Calculate the minimum removals needed
return n - maxMountainLength;
}
}
void main() {
Solution solution = Solution();
// Test case 1
List<int> nums1 = [1, 3, 1];
print("Output for [1,3,1]: ${solution.minimumMountainRemovals(nums1)}");
// Expected output: 0
// Test case 2
List<int> nums2 = [2, 1, 1, 5, 6, 2, 3, 1];
print(
"Output for [2,1,1,5,6,2,3,1]: ${solution.minimumMountainRemovals(nums2)}");
// Expected output: 3
}