2021-7-19 Frequency of the Most Frequent Element
2021/7/19 6:05:22
本文主要是介绍2021-7-19 Frequency of the Most Frequent Element,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
难度 中等
题目 Leetcode:
1838. 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.
Constraints
1 <= nums.length <= 105
1 <= nums[i] <= 105
1 <= k <= 105
Keyword
maximum possible frequency 最大可能频数
题目解析
本题大意是对给定数组内的元素操作至多k次,使得数组内相同的元素尽可能的多,即最大可能频数最大,一次操作就是选中一个元素使其的值+1;
这种题拿到第一反应就是先排序,这题用到了滑动窗口的思想,简单来说就是先分别定义left和right两个值作为滑动窗口的两端,而这题k的作用本质来说就等于说是一个条件,在滑动窗口过程中寻找k足够填满窗口的情况,然后记录当前频数是否是当前的最大可能频数。
解析完毕,以下位参考代码
1 class Solution { 2 public: 3 int maxFrequency(vector<int>& nums, int k) { 4 sort(nums.begin(),nums.end()); 5 int length=nums.size(); 6 long long ans=0,l=0,res=1; 7 for(int i=1;i<length;i++) 8 { 9 ans+=(long long)(nums[i]-nums[i-1])*(i-l); 10 if(ans>k)ans-=nums[i]-nums[l++]; 11 res=max(res,i-l+1); 12 } 13 return res; 14 } 15 };
这篇关于2021-7-19 Frequency of the Most Frequent Element的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享