[关闭]
@Chilling 2016-08-20T06:10:29.000000Z 字数 2187 阅读 918

HDU-1059: Dividing(多重背包)

DP


Description

Marsha and Bill own a collection of marbles. They want to split the collection among themselves so that both receive an equal share of the marbles. This would be easy if all the marbles had the same value, because then they could just split the collection in half. But unfortunately, some of the marbles are larger, or more beautiful than others. So, Marsha and Bill start by assigning a value, a natural number between one and six, to each marble. Now they want to divide the marbles so that each of them gets the same total value.
Unfortunately, they realize that it might be impossible to divide the marbles in this way (even if the total value of all marbles is even). For example, if there are one marble of value 1, one of value 3 and two of value 4, then they cannot be split into sets of equal value. So, they ask you to write a program that checks whether there is a fair partition of the marbles.

Input

Each line in the input describes one collection of marbles to be divided. The lines consist of six non-negative integers n1, n2, ..., n6, where ni is the number of marbles of value i. So, the example from above would be described by the input-line "1 0 1 2 0 0". The maximum total number of marbles will be 20000.

The last line of the input file will be 0 0 0 0 0 0; do not process this line.

Output

For each colletcion, output "Collection #k:", where k is the number of the test case, and then either "Can be divided." or "Can't be divided.".

Output a blank line after each test case.

Sample Input

1 0 1 2 0 0
1 0 0 0 1 1
0 0 0 0 0 0

Sample Output

Collection #1:
Can't be divided.

Collection #2:
Can be divided.

题意:价值1-6的六个物品,输入他们的个数,判断是否能够平分为价值相当的两份。

分析:多重背包+二进制优化


  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<string.h>
  4. using namespace std;
  5. int main()
  6. {
  7. int a[7],i,s,k,flag,mid,j,dp[100005],t=0,v[100005];
  8. while(1)
  9. {
  10. memset(dp,0,sizeof(dp));
  11. memset(v,0,sizeof(v));
  12. flag=0;
  13. s=0;
  14. for(i=1;i<=6;i++)
  15. {
  16. scanf("%d",&a[i]);
  17. s+=a[i]*i;
  18. if(a[i]!=0)
  19. flag=1;
  20. }
  21. if(flag==0)
  22. break;
  23. else
  24. {
  25. if(s%2==1)
  26. {
  27. printf("Collection #%d:\n",++t);
  28. printf("Can't be divided.\n");
  29. }
  30. else
  31. {
  32. int c=1;
  33. for(i=1;i<=6;i++) //二进制优化,把数量拆分成2的几次方
  34. {
  35. for(j=1;j<=a[i];j*=2)
  36. {
  37. v[c++]=j*i;
  38. a[i]-=j;
  39. }
  40. if(a[i]>0) //余下的单独算
  41. v[c++]=a[i]*i;
  42. }
  43. /* for(i=1;i<c;i++)
  44. printf("%d\n",v[i]);*/
  45. //输出之后发现其实就是变成01背包了……
  46. mid=s/2;
  47. for(i=0;i<c;i++)
  48. for(j=mid;j>=v[i];j--)
  49. dp[j]=max(dp[j],dp[j-v[i]]+v[i]);
  50. if(dp[mid]==mid)
  51. {
  52. printf("Collection #%d:\n",++t);
  53. printf("Can be divided.\n");
  54. }
  55. else
  56. {
  57. printf("Collection #%d:\n",++t);
  58. printf("Can't be divided.\n");
  59. }
  60. }
  61. }
  62. printf("\n");
  63. }
  64. return 0;
  65. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注