记录编号 |
349691 |
评测结果 |
AAAAAAAAAA |
题目名称 |
社长的qwa |
最终得分 |
100 |
用户昵称 |
coo |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.014 s |
提交时间 |
2016-11-15 10:15:25 |
内存使用 |
0.97 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define INF (long long)1<<62
using namespace std;
int m,n,k;
long long f[100005];
long long ans=INF,sum=0,now=0;
int main()
{
freopen("qwa.in","r",stdin);
freopen("qwa.out","w",stdout);
scanf("%d%d",&n,&k);
for(int i=1;i<=n;i++)scanf("%lld",&f[i]);
sort(f+1,f+1+n);
for(int i=1;i<=k;i++)
{
now=now+(long long)(i-1)*f[i]-sum;
sum+=f[i];
}
for(int i=k+1;i<=n;i++)
{
ans=min(ans,now);
sum-=f[i-k];
now-=sum-f[i-k]*(k-1);
now+=(k-1)*f[i]-sum;
sum+=f[i];
}
ans=min(ans,now);
printf("%lld",ans);
return 0;
}