Codeforces 571B Minimization

B. Minimization
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You've got array A, consisting of n integers and a positive integer k. Array A is indexed by integers from 1 to n.

You need to permute the array elements so that value

became minimal possible. In particular, it is allowed not to change order of elements at all.
Input

The first line contains two integers n, k (2 ≤ n ≤ 3·1051 ≤ k ≤ min(5000, n - 1)).

The second line contains n integers A[1], A[2], ..., A[n] ( - 109 ≤ A[i] ≤ 109), separate by spaces — elements of the array A.

Output

Print the minimum possible value of the sum described in the statement.

Examples
input
3 2
1 2 4
output
1
input
5 2
3 -5 3 -5 3
output
0
input
6 3
4 3 4 3 2 5
output
3
Note

In the first test one of the optimal permutations is 1 4 2.

In the second test the initial order is optimal.

In the third test one of the optimal permutations is 2 3 4 4 3 5.


题目大意:你有一个数列,要重新排列,使得相隔k位的数的差的绝对值之和最小。

思路:本题可以采用分段,可以看出,1——k之间的任何一个数都是互不干扰,且1——k之间的每一个数都带领着一个数链,故可以在排序后DP,设置状态为:f[i][j]表示有i段长链和j段短链所获得的最小值(因为有可能无法均分所以链有长短之分,长短链的长度相差1)。转移:f[i][j]可以向f[i+1][j]和f[i][j+1]转移。

附代码。
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<iostream>
#include<cmath>
#include<cstdlib>

using namespace std;

const int MAXN=300010;
const int MAXK=5010;
const long long INF=20000000000;
long long f[MAXK][MAXK];
int a[MAXN];

int main()
{
	int n,k;
	scanf("%d%d",&n,&k);
	for (int i=1;i<=n;i++)
	{
		scanf("%d",&a[i]);
	}
	sort(a+1,a+1+n);
	int len,lnum,snum;
	len=n/k;
	lnum=n%k;
	snum=k-lnum;
	for (int i=0;i<=snum;i++)
	{
		for (int j=0;j<=lnum;j++)
		{
			f[i][j]=INF;
		}
	}
	f[0][0]=0;
	for (int i=0;i<=snum;i++)
	{
		for (int j=0;j<=lnum;j++)
		{
			int pos=i*len+j*(len+1)+1;
			if (i!=snum)
			{
				f[i+1][j]=min(f[i+1][j],f[i][j]+a[pos+len-1]-a[pos]);
			}
			if (j!=lnum)
			{
				f[i][j+1]=min(f[i][j+1],f[i][j]+a[pos+len]-a[pos]);
			}
		}
	}
	cout<<f[snum][lnum];
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值