Codeforces Round 143 (Div. 2) C. To Add or Not to Add 题解 前缀和 二分

To Add or Not to Add

题目描述

A piece of paper contains an array of n n n integers a 1 , a 2 , . . . , a n a_{1},a_{2},...,a_{n} a1,a2,...,an. Your task is to find a number that occurs the maximum number of times in this array.

However, before looking for such number, you are allowed to perform not more than k k k following operations — choose an arbitrary element from the array and add 1 1 1 to it. In other words, you are allowed to increase some array element by 1 1 1 no more than k k k times (you are allowed to increase the same element of the array multiple times).

Your task is to find the maximum number of occurrences of some number in the array after performing no more than k k k allowed operations. If there are several such numbers, your task is to find the minimum one.

输入格式

The first line contains two integers n n n and k k k ( 1 < = n < = 1 0 5 1<=n<=10^{5} 1<=n<=105 ; 0 < = k < = 1 0 9 0<=k<=10^{9} 0<=k<=109 ) — the number of elements in the array and the number of operations you are allowed to perform, correspondingly.

The third line contains a sequence of n n n integers a 1 , a 2 , . . . , a n a_{1},a_{2},...,a_{n} a1,a2,...,an ( ∣ a i ∣ < = 1 0 9 ) (|a_{i}|<=10^{9}) (ai<=109) — the initial array. The numbers in the lines are separated by single spaces.

输出格式

In a single line print two numbers — the maximum number of occurrences of some number in the array after at most k k k allowed operations are performed, and the minimum number that reaches the given maximum. Separate the printed numbers by whitespaces.

提示

In the first sample your task is to increase the second element of the array once and increase the fifth element of the array twice. Thus, we get sequence 6 , 4 , 4 , 0 , 4 6,4,4,0,4 6,4,4,0,4, where number 4 4 4 occurs 3 3 3 times.

In the second sample you don’t need to perform a single operation or increase each element by one. If we do nothing, we get array 5 , 5 , 5 5,5,5 5,5,5, if we increase each by one, we get 6 , 6 , 6 6,6,6 6,6,6. In both cases the maximum number of occurrences equals 3 3 3. So we should do nothing, as number 5 5 5 is less than number 6 6 6.

In the third sample we should increase the second array element once and the fifth element once. Thus, we get sequence 3 , 2 , 2 , 2 , 2 3,2,2,2,2 3,2,2,2,2, where number 2 2 2 occurs 4 4 4 times.

题面翻译

题目描述

给定一个长度为 n n n 的序列 a 1 a1 a1, a 2 a2 a2…… a n an an,请你把其中一些数进行若干次 + 1 +1 +1 操作,且操作总次数不超过 k k k,使得原序列中某数出现的次数最多。求操作之后的出现最多的数和它出现的次数。

输入

第一行两个整数 n , k n,k n,k,即序列的长度和操作总次数。第二行为 a 1 a1 a1, a 2 a2 a2…… a n an an

输出

两个整数,分别为出现最多的次数和出现最多的。如果有多个满足条件的数字,输出值最小的一个。

样例 #1

样例输入 #1

5 3
6 3 4 0 2

样例输出 #1

3 4

样例 #2

样例输入 #2

3 4
5 5 5

样例输出 #2

3 5

样例 #3

样例输入 #3

5 3
3 1 2 2 1

样例输出 #3

4 2

原题

Codeforces——传送门
洛谷——传送门

代码

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
typedef long long ll;int main()
{ios::sync_with_stdio(0);cin.tie(0);int n, k;cin >> n >> k;vector<int> a(n + 1);for (int i = 1; i <= n; i++){cin >> a[i];a[i] += 1e9; // 由于读入的数据存在负数,我们可以通过巧妙地补偿1e9来使数组元素成为非负数}sort(a.begin(), a.end());vector<i64> s(n + 1, 0);for (int i = 1; i <= n; i++) // 前缀和s[i] = s[i - 1] + a[i];auto get_cnt = [&](int idx){// 最大次数即[left,idx]区间的最大长度// 二分leftint l = 1, r = idx;while (l < r){int mid = (l + r) / 2;// 达到idx-mid+1个a[idx]值需要补充1LL * a[idx] * (idx - mid + 1) - (s[idx] - s[mid - 1])的差值// k>=差值,则满足条件if (k >= 1LL * a[idx] * (idx - mid + 1) - (s[idx] - s[mid - 1]))r = mid;elsel = mid + 1;}return idx - l + 1;};int max_cnt = 0;                   // 某数出现的最大次数int ans_num = -1;                  // 取到最大次数的最小数组元素for (int idx = 1; idx <= n; idx++) // 遍历数组,确定数组中各个元素可出现的最大次数{int cur_cnt = get_cnt(idx);if (cur_cnt > max_cnt){max_cnt = cur_cnt;ans_num = a[idx];}}cout << max_cnt << ' ' << ans_num - (int)1e9 << '\n'; // 输出时记得将补偿的1e9减去return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/37330.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

点云压缩配置开发环境遇到一些bug

1、配置基于cuda的计算库&#xff0c;Chamfer3D和pointops 编译chamfer3D时候会遇到一个cub版本的校验错误。 解决方法&#xff1a;根据错误提示&#xff0c;进入cuda的config配置文件中&#xff0c;使用#define将校验功能关闭 编译pointops&#xff0c;会遇到报错&#xff1a;…

C++Primer Plus 第十四章代码重用:14.4.4 数组模板示例和非类型参数2

14.4.4 数组模板示例和非类型参数 提示&#xff1a;这里可以添加系列文章的所有文章的目录&#xff0c;目录需要自己手动添加 例如&#xff1a;第一章 Python 机器学习入门之pandas的使用 提示&#xff1a;写完文章后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右…

《分析模式》漫谈08-单继承不是“唯一继承”

DDD领域驱动设计批评文集 做强化自测题获得“软件方法建模师”称号 《软件方法》各章合集 《分析模式》第2章这一段&#xff1a; 划线处的single inheritance&#xff0c;2004中译本的翻译&#xff1a; 翻译为“单继承”&#xff0c;是正确的。 2020中译本的翻译&#xff1a…

Java NIO(一) 概述

NIO主要用于以少量线程来管理多个网络连接&#xff0c;处理其上的读写等事件。在大量连接情况下&#xff0c;不管是效率还是空间占用都要优于传统的BIO。 Java NIO 由以下几个核心部分组成&#xff1a; Channel Buffer Selector Selector 如果你的应用打开了多个连接&#x…

分页插件 count有数据,代码不往下执行

如下:如果打印了sql那么当row>0时会有图2下面sql详情的输出 问题出在了分页参数上,pageNum为1,并且pageSize>2才能打印出图二的结果,图一为pageNum值是0,注意,查询第一页,分页应该传入的是1而不是0

大数据批处理系统和业务系统是两种不同类型的系统,它们在目的、设计、功能和使用场景上有所区别

大数据批处理系统和业务系统是两种不同类型的系统&#xff0c;它们在目的、设计、功能和使用场景上有所区别。以下是大数据批处理系统和业务系统之间的一些主要差异&#xff1a; 1. **目的**&#xff1a; - **大数据批处理系统**&#xff1a;主要用于处理和分析大量数据&am…

MySQL高级1.0

目录 &#x1f4cc;MySQL存储过程和函数 ✏️存储过程和函数介绍 ✏️存储过程的创建和调用 ✏️存储过程的查看和删除 ✏️存储过程语法-变量 ✏️存储过程语法-if语句 ✏️存储过程语法-参数传递 ✏️存储过程语法-while循环 ✏️存储过程语法-存储函数 &#x1f4…

Linux高并发服务器开发(六)线程

文章目录 1. 前言2 线程相关操作3 线程的创建4 进程数据段共享和回收5 线程分离6 线程退出和取消7 线程属性&#xff08;了解&#xff09;8 资源竞争9 互斥锁9.1 同步与互斥9.2 互斥锁 10 死锁11 读写锁12 条件变量13 生产者消费者模型14 信号量15 哲学家就餐 1. 前言 进程是C…

【FFmpeg】avio_open2函数

【FFmpeg】avio_open2函数 1.avio_open21.1 创建URLContext&#xff08;ffurl_open_whitelist&#xff09;1.1.1 创建URLContext&#xff08;ffurl_alloc&#xff09;1.1.1.1 查找合适的protocol&#xff08;url_find_protocol&#xff09;1.1.1.2 为查找到的URLProtocol创建UR…

影响Cache命中率的因素有哪些?

缓存命中率&#xff08;Cache Hit Rate&#xff09;是指处理器访问缓存时&#xff0c;所需数据已经在缓存中找到的次数与总访问次数的比例。提高缓存命中率可以显著提升系统性能&#xff0c;因为缓存访问速度远快于主存访问速度。影响缓存命中率的关键因素包括&#xff1a; 1.…

C语言异常处理就机制setjmp()和longjmp()

C语言setjmp()和longjmp()实现异常处理机制。 setjmp() 用于保存当前的程序执行状态。 longjmp() 用于在后面的某个时刻返回到setjmp()点的状态。 类似goto。但goto是本地的&#xff0c;只能在函数内部跳转。 setjmp()和longjmp()是非局部跳转语句&#xff0c;可在调用栈上&a…

通信系统网络架构_3.移动通信网络架构

移动通信网为移动互联网提供了强有力的支持&#xff0c;尤其是5G网络为个人用户、垂直行业等提供了多样化的服务。以下从业务应用角度给出面向5G网络的组网方式。 1.5GS与DN互连 5GS&#xff08;5G System&#xff09;在为移动终端用户&#xff08;User Equipment&#xff0c;…

CSRF的其他防范措施?

一般情况下&#xff0c;我们可以通过各种防护策略来防御CSRF&#xff0c;对于QA、SRE、安全负责人等&#xff0c;我们可以做哪些事情来提升安全性呢&#xff1f; 一、CSRF测试 CSRFTester是一款CSRF漏洞的测试工具&#xff0c;CSRFTester工具的测试原理大概是这样的&#xff…

BLACKBOX.AI:解锁开发新纪元,加速编程学习的AI神器!

文章目录 &#x1f4af;BLACKBOX.AI 官网&#x1f341;1 BLACKBOX.AI 工具使用教程&#x1f341;2 BLACKBOX.AI工具使用界面介绍&#x1f341;3 Chat(聊天)功能&#x1f341;4 Explore (探索)功能&#x1f48e;4.1 Terminal(终端)功能&#x1f48e;4.2 Discover(发现)功能&…

STM32 IWDG(独立看门狗)

1 IWDG简介 STM32有两个看门狗&#xff1a;一个是独立看门狗&#xff08;IWDG&#xff09;&#xff0c;另外一个是窗口看门狗。独立看门狗也称宠物狗&#xff0c;窗口看门狗也称警犬。本文主要分析独立看门狗的功能和它的应用。 独立看门狗用通俗一点的话来解释就是一个12位的…

关于转BigDecimal对象时,精度问题

//浮点型数值Double d 0.0003d;//转BigDecimal对象BigDecimal a new BigDecimal(d);System.out.println(String.format("浮点类型数字:%.4f创建BigDecimal对象并且保留多位小数并且保留多位小数时,精度会变多,结果为%s",d,a.setScale(8, BigDecimal.ROUND_DOWN)));…

format()方法——格式化字符串

自学python如何成为大佬(目录):https://blog.csdn.net/weixin_67859959/article/details/139049996?spm1001.2014.3001.5501 语法介绍 format()可以对数据进行格式化处理操作&#xff0c;语法如下&#xff1a; format(value, format_spec) format_spec为格式化解释。当参数…

【计算机毕业设计】092基于微信小程序二手闲置交易市场

&#x1f64a;作者简介&#xff1a;拥有多年开发工作经验&#xff0c;分享技术代码帮助学生学习&#xff0c;独立完成自己的项目或者毕业设计。 代码可以私聊博主获取。&#x1f339;赠送计算机毕业设计600个选题excel文件&#xff0c;帮助大学选题。赠送开题报告模板&#xff…

PostgreSQL的系统视图pg_stat_archiver

PostgreSQL的系统视图pg_stat_archiver 在 PostgreSQL 数据库中&#xff0c;pg_stat_archiver 视图提供了关于归档进程&#xff08;archiver process&#xff09;的统计信息。归档进程负责将 WAL&#xff08;Write-Ahead Logging&#xff09;日志文件复制到归档存储&#xff0…

探索区块链:颠覆性技术的崛起

目录 一、引言 二、区块链技术概述 三、区块链应用场景 四、区块链面临的挑战 五、区块链的未来展望 六、结语 一、引言 在数字化浪潮的推动下&#xff0c;区块链技术以其独特的去中心化、透明性和不可篡改性等特性&#xff0c;正在逐步改变我们的生活。从金融领域到供应…