记录编号 |
33128 |
评测结果 |
AAAAAAAAAA |
题目名称 |
象棋比赛 |
最终得分 |
100 |
用户昵称 |
Truth.Cirno |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.070 s |
提交时间 |
2011-11-09 15:40:36 |
内存使用 |
0.64 MiB |
显示代码纯文本
#include <cstdio>
#include <cstdlib>
using namespace std;
int a[100000];
void swap(int& x,int& y)
{
int temp;
temp=x;
x=y;
y=temp;
}
void qqsort(int l,int r)
{
int ll,rr,temp;
ll=l;
rr=r;
temp=a[rand()%(r-l+1)+l];
while (ll<=rr)
{
while (a[ll]<temp)
ll++;
while (temp<a[rr])
rr--;
if (ll<=rr)
{
swap(a[ll],a[rr]);
ll++;
rr--;
}
}
if (l<rr)
qqsort(l,rr);
if (ll<r)
qqsort(ll,r);
}
int main(void)
{
freopen("chess.in","r",stdin);
freopen("chess.out","w",stdout);
int i,n,k,c=0;
scanf("%d %d",&n,&k);
for (i=0;i<n;i++)
scanf("%d",&a[i]);
qqsort(0,n-1);
for (i=0;i<n-1;i++)
a[i]=a[i+1]-a[i];
qqsort(0,n-2);
for (i=0;i<k;i++)
c+=a[i];
printf("%d\n",c);
fclose(stdin);
fclose(stdout);
return(0);
}