TOJ 2865 Chopsticks DP

拼搏现实的明天。 2022-05-17 02:38 187阅读 0赞

2865: Chopsticks

描述

In China, people use a pair of chopsticks to get food on the table, but Mr. L is a bit different. He uses a set of three chopsticks — one pair, plus an EXTRA long chopstick to get some big food by piercing it through the food. As you may guess, the length of the two shorter chopsticks should be as close as possible, but the length of the extra one is not important, as long as it’s the longest. To make things clearer, for the set of chopsticks with lengths A,B,C(A<=B<=C), (A-B)^2 is called the ‘badness’ of the set.

It’s December 2nd, Mr.L’s birthday! He invited K people to join his birthday party, and would like to introduce his way of using chopsticks. So, he should prepare K+8 sets of chopsticks(for himself, his wife, his little son, little daughter, his mother, father, mother-in-law, father-in-law, and K other guests). But Mr.L suddenly discovered that his chopsticks are of quite different lengths! He should find a way of composing the K+8 sets, so that the total badness of all the sets is minimized.

输入

The first line in the input contains a single integer T, indicating the number of test cases(1<=T<=20). Each test case begins with two integers K, N(0<=K<=1000, 3K+24<=N<=5000), the number of guests and the number of chopsticks. There are N positive integers Li on the next line in non-decreasing order indicating the lengths of the chopsticks.(1<=Li<=32000).

输出

For each test case in the input, print a line containing the minimal total badness of all the sets.

样例输入

1
1 40
1 8 10 16 19 22 27 33 36 40 47 52 56 61 63 71 72 75 81 81 84 88 96 98 103 110 113 118 124 128 129 134 134 139 148 157 157 160 162 164

样例输出

23

提示

For the sample input, a possible collection of the 9 sets is:
8,10,16; 19,22,27; 61,63,75; 71,72,88; 81,81,84; 96,98,103; 128,129,148; 134,134,139; 157,157,160

题意:L先生要从n根筷子从挑出k+8对,而他的筷子,一对有3根筷子abc组成,其中c为最长的,(a-b)*(a-b)构成了这对筷子的badness值,求构成k+8对筷子的最小badness值。

思路:因为要求c是最大的,而且有ab构成badness值,所以可以把整个数组从大到小排列,数组dp[i][j]构成了i根筷子中选j对。

转移方程:f[i][j]=min(f[i-1][j],f[i-2][j-1]+(a[i]-a[i-1])*(a[i]-a[i-1]));

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <algorithm>
  4. using namespace std;
  5. int a[5500],f[5500][1500];
  6. //f[i][j]表示前i个数中选j对
  7. bool cmp(int x,int y)
  8. {
  9. return x>y;
  10. }
  11. int main()
  12. {
  13. int t,n,k,i,j;
  14. scanf("%d",&t);
  15. while(t--)
  16. {
  17. memset(a,0,sizeof(a));
  18. scanf("%d%d",&k,&n);
  19. for(i=1;i<=n;i++)
  20. scanf("%d",&a[i]);
  21. sort(a+1,a+n+1,cmp);
  22. for(i=1;i<=n;i++)
  23. {
  24. f[i][0]=0;
  25. for(j=1;j<=k+8;j++)
  26. f[i][j]=10000000;
  27. }
  28. for(i=1;i<=n;i++)
  29. {
  30. for(j=1;j<=k+8;j++)
  31. {
  32. if(3*j<=i)
  33. f[i][j]=min(f[i-1][j],f[i-2][j-1]+(a[i]-a[i-1])*(a[i]-a[i-1]));
  34. }
  35. }
  36. printf("%d\n",f[n][k+8]);
  37. }
  38. }

发表评论

表情:
评论列表 (有 0 条评论,187人围观)

还没有评论,来说两句吧...

相关阅读

    相关 TOJ1292 排序

    滴,集训第二十九天打卡。 (其实都快结束了... 距离老师上一次开比赛也是九天前了,于是我只能在TOJ划水了... 还在https://www.panda.tv/1352

    相关 TOJ4448 判断正确

    描述 小航比较粗心,判断他写的表达式是否正确。 输入 多组数据,直到文件结束。每行输入 a 运算符号 b 关系符号 c ,(0<=a,b,c<=9),用英文字母表示。

    相关 TOJ 4674 数塔II DP

    4674: 数塔II 描述 有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多少,并输出一条路径。 7 3 8