LeetCode in Kotlin

2779. Maximum Beauty of an Array After Applying Operation

Medium

You are given a 0-indexed array nums and a non-negative integer k.

In one operation, you can do the following:

The beauty of the array is the length of the longest subsequence consisting of equal elements.

Return the maximum possible beauty of the array nums after applying the operation any number of times.

Note that you can apply the operation to each index only once.

A subsequence of an array is a new array generated from the original array by deleting some elements (possibly none) without changing the order of the remaining elements.

Example 1:

Input: nums = [4,6,1,2], k = 2

Output: 3

Explanation:

In this example, we apply the following operations:

After the applied operations, the beauty of the array nums is 3 (subsequence consisting of indices 0, 1, and 3).

It can be proven that 3 is the maximum possible length we can achieve.

Example 2:

Input: nums = [1,1,1,1], k = 10

Output: 4

Explanation:

In this example we don’t have to apply any operations.

The beauty of the array nums is 4 (whole array).

Constraints:

Solution

class Solution {
    fun maximumBeauty(nums: IntArray, k: Int): Int {
        nums.sort()
        var i = 0
        val n = nums.size
        var j = 0
        while (j < n) {
            if (nums[j] - nums[i] > k * 2) {
                i++
            }
            ++j
        }
        return j - i
    }
}