Frequency of the Most Frequent Element
The frequency of an element is the number of times it occurs in an array.
You are given an integer array nums and an integer k. In one operation, you can choose an index of nums and increment the element at that index by 1.
Return the maximum possible frequency of an element after performing at most k operations.
Example 1
Input
nums = [1,2,4], k = 5Output
3Increment the first element three times and the second element two times to make nums = [4, 4, 4], so 4 has a frequency of 3.
Example 2
Input
nums = [1,4,8,13], k = 5Output
2There are multiple optimal solutions, each making one value appear twice using at most 5 operations.
Constraints
- 1 <= nums.length <= 10^5
- 1 <= nums[i] <= 10^5
- 1 <= k <= 10^5