Minimizing Difference (极小化差)

题目

 

You are given a sequence a1,a2,…,an consisting of nn integers.

You may perform the following operation on this sequence: choose any element and either increase or decrease it by one.

Calculate the minimum possible difference between the maximum element and the minimum element in the sequence, if you can perform the aforementioned operation no more than k times.

Input

The first line contains two integers nn and k (2≤n≤105,1≤k≤1014) — the number of elements in the sequence and the maximum number of times you can perform the operation, respectively.

The second line contains a sequence of integers a1,a2,…,an (1≤ai≤109) .

Output

Print the minimum possible difference between the maximum element and the minimum element in the sequence, if you can perform the aforementioned operation no more than kk times.

Examples

Input

4 5
3 1 7 5

Output

2

Input

3 10
100 100 100

Output

0

Input

10 9
4 5 5 7 5 4 5 2 4 3

Output

1

Note

In the first example you can increase the first element twice and decrease the third element twice, so the sequence becomes [3,3,5,5] , and the difference between maximum and minimum is 2 . You still can perform one operation after that, but it's useless since you can't make the answer less than 2 .

In the second example all elements are already equal, so you may get 0 as the answer even without applying any operations.

 题意:求最小和最大的极差,经过k次变换,使得极差最小,且每次改变只能增1或减1;

思路:两边同时增1和减1,计算在k次变换范围内的极差,如果不够改变,if判断一下能否改变一端,使得极差变小~

注意:long long  n,k,x,ans;不要放在主函数里,会越界,应该放上面;

 

Code:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
typedef long long ll;
const int N=1e5+10;
ll a[N];
ll n,k,x,ans;
int main()
{
    scanf("%lld %lld",&n,&k);
    for(int i=1; i<=n; i++)
        scanf("%lld",&a[i]);
    sort(a+1,a+n+1);
    for(int i=1; i<=n/2; i++)
    {
        int j=n-i+1;
        x=(a[i+1]-a[i]+a[j]-a[j-1])*i;
        if(x<=k)
            k-=x;
        else
        {
            ans=a[j]-a[i]-k/i;
            break;
        }
    }
    printf("%lld\n",ans);
    return 0;
}

灵活多变~~!

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嵩韵儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值