Problem Description
Now you are asked to measure a dose of medicine with a balance and a number of weights. Certainly it is not always achievable. So you should find out the qualities which cannot be measured from the range [1,S]. S is the total quality of all the weights.
Input
The input consists of multiple test cases, and each case begins with a single positive integer N (1<=N<=100) on a line by itself indicating the number of weights you have. Followed by N integers Ai (1<=i<=N), indicating the quality of each weight where 1<=Ai<=100.
Output
For each input set, you should first print a line specifying the number of qualities which cannot be measured. Then print another line which consists all the irrealizable qualities if the number is not zero.
Sample Input
3 1 2 4 3 9 2 1
Sample Output
0 2 4 5
解题思路:用母函数去求解,只是这个增加了可能有减得情况,主要还是组合的一个思想。
代码如下:
- #include<iostream>
- using namespace std;
- const int Max1(10001);
- const int Max2(101);
- int num[Max1];
- int temp[Max1];
- int data[Max2];
- int main()
- {
- int n;
- while(cin>>n)
- {
- int sum=0;
- num[0]=1;
- for(int i=1;i<=n;i++)
- {
- cin>>data[i];
- sum+=data[i];
- }
- for(i=0;i<=sum;++i)
- {
- num[i]=0;
- temp[i]=0;
- }
- num[0]=1;
- //用到两重循环,从来到尾的找即可
- for(i=1;i<=n;i++)
- {
- for(int j=0;j+data[i]<=sum;j++)
- {
- if(num[j]==1)
- {
- temp[j]=1;
- temp[j+data[i]]=1;
- temp[abs(j-data[i])]=1;
- }
- }
- for(j=0;j<=sum;j++)
- {
- num[j]=temp[j];
- temp[j]=0;
- }
- }
- int step=0;
- int j;
- for(i=1,j=0;i<=sum;i++)
- {
- if(num[i]==0)
- {
- step++;
- temp[j]=i;
- j++;
- }
- }
- cout<<step<<endl;
- if(step!=0)
- {
- for(i=0;i<j;i++)
- {
- if(i!=0)
- cout<<' ';
- cout<<temp[i];
- }
- cout<<endl;
- }
- }
- return 0;
- }