记录编号 |
348904 |
评测结果 |
AAAAAAAAAA |
题目名称 |
社长的qwa |
最终得分 |
100 |
用户昵称 |
coolkid |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.393 s |
提交时间 |
2016-11-14 17:20:58 |
内存使用 |
0.70 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int MAXN=1e5+10;
int A[MAXN];
int n,k;
void init(){
scanf("%d%d",&n,&k);
for(int i=0;i<n;i++) scanf("%d",&A[i]);
sort(A,A+n);
}
typedef long long LL;
LL sum=0,now=0,ans=214748364700000LL;
inline LL Abs(LL x){
if(x<0) return -x;
return x;
}
void work(){
for(int i=0;i<k;i++){
sum+=A[i];
for(int j=0;j<=i;j++) now+=Abs(A[i]-A[j]);
}
ans=now;
// cout<<ans<<endl;
for(int i=k;i<n;i++){
now-=sum-(LL)A[i-k]*k;
sum+=A[i]-A[i-k];
now+=(LL)k*A[i]-sum;
if(now<ans) ans=now;
// cout<<now<<endl;
}
cout<<ans<<endl;
}
int main(){
freopen("qwa.in","r",stdin);
freopen("qwa.out","w",stdout);
init();
work();
return 0;
}