C. Maximum Median

time limit per test

2 seconds

memory limit per test

256 megabytes

You are given an array a of n integers, where n is odd. You can make the following operation with it:

  • Choose one of the elements of the array (for example ai) and increase it by 1 (that is, replace it with ai+1).

You want to make the median of the array the largest possible using at most k operations.

The median of the odd-sized array is the middle element after the array is sorted in non-decreasing order. For example, the median of the array [1,5,2,3,5] is 3.

Input

The first line contains two integers n and k (1≤n≤2⋅105, n is odd, 1≤k≤109) --- the number of elements in the array and the largest number of operations you can make.

The second line contains n integers a1,a2,...,an (1≤ai≤109).

Output

Print a single integer --- the maximum possible median after the operations.

Examples

Input

Copy

复制代码
3 2
1 3 5

Output

Copy

复制代码
5

Input

Copy

复制代码
5 5
1 2 1 1 1

Output

Copy

复制代码
3

Input

Copy

复制代码
7 7
4 1 2 4 3 4 4

Output

Copy

复制代码
5

Note

In the first example, you can increase the second element twice. Than array will be [1,5,5] and it's median is 5.

In the second example, it is optimal to increase the second number and than increase third and fifth. This way the answer is 3.

In the third example, you can make four operations: increase first, fourth, sixth, seventh element. This way the array will be [5,1,2,5,3,5,5] and the median will be 5.

解题说明:此题是一道数学题,首先对数列进行从小到大排序,为了让中位数变大,让中位数变成和后面的数一样大,于是让该中位数在加完k后和后面的X个数字相同即可。

cpp 复制代码
#include<iostream>
#include<algorithm>
using namespace std;
int n, k, m, i;
int main()
{
	cin >> n >> k;
	int a[200004];
	m = n / 2;
	for (i = 0; i < n; i++)
	{
		cin >> a[i];
	}
	sort(a, a + n);
	for (i = a[m]; k > 0; i++) 
	{
		while (i == a[m + 1])
		{
			m++;
		}
		k = k - (m - n / 2 + 1);
	}
	if (k == 0)
	{
		cout << i<<endl;
	}
	else
	{
		cout << i - 1<<endl;
	}
	return 0;
}
相关推荐
编程小白20265 分钟前
从 C++ 基础到效率翻倍:Qt 开发环境搭建与Windows 神级快捷键指南
开发语言·c++·windows·qt·学习
qq7422349849 分钟前
APS系统与OR-Tools完全指南:智能排产与优化算法实战解析
人工智能·算法·工业·aps·排程
2的n次方_16 分钟前
Runtime 内存管理深化:推理批处理下的内存复用与生命周期精细控制
c语言·网络·架构
像风一样的男人@31 分钟前
python --读取psd文件
开发语言·python·深度学习
输出输入32 分钟前
前端核心技术
开发语言·前端
加油,小猿猿33 分钟前
Java开发日志-双数据库事务问题
java·开发语言·数据库
嵌入小生00736 分钟前
标准IO---核心函数接口延续(嵌入式Linux)
c语言·vscode·vim·嵌入式·小白·标准io·函数接口
A尘埃36 分钟前
超市购物篮关联分析与货架优化(Apriori算法)
算法
薛定谔的猫喵喵39 分钟前
天然气压力能利用系统综合性评价平台:基于Python和PyQt5的AHP与模糊综合评价集成应用
开发语言·python·qt
.小墨迹43 分钟前
apollo学习之借道超车的速度规划
linux·c++·学习·算法·ubuntu