Find Maximum Beauty
Given an array arr, you can perform the following operation:
- Remove an element from any position in the array. The order of other elements should be maintained after removing the element.
You're allowed to perform this operation until the arr size becomes 1.
Now the beauty of an array is equal to the number of elements where a[i] = i (the array is 1 indexed).
Given an array, find the maximum beauty after performing the above operation.
Complete the function findMaximumBeauty in the editor.
findMaximumBeauty has the following parameter:
int[] arr: an array of integers
Returns
int: the maximum beauty of the array
1Example 1
Following the operations described in the problem statement:
- Remove the first
3, thenarrbecomes[1, 2, 5, 4, 5, 3]. - Remove
3, thenarrbecomes[1, 2, 5, 4, 5].
The beauty of the final array is 4. (where a[i] = i).
Constraints
Limits and guarantees your solution can rely on.
unknown for now