我的问题是我有14个数字的数组我希望有一个程序可以提供所有可能的
8位数内的总和 40
的组合例如
14位是1,7,7,4,6,5,5,2,4,7,10,3,9,6,
组合应该是这样的
6+5+6+7+2+3+2+9=40
7+7+7+7+6+4+1+1=40
答案 0 :(得分:1)
由于数组的大小只有14,所以我不会在优化时使用。
使用bitwise operations
查找所有组合可以解决您的问题。
想法是:生成给定数组(集合)的所有子集,此集合称为幂集。对于每个子集(组合),检查子集的元素的总和是等于40。
请参阅以下教程,了解 如何使用Bit Wise Operations找到所有组合 。 http://www.codechef.com/wiki/tutorial-bitwise-operations
C ++实现:
int main()
{
int A[] = { 1, 7, 7, 4, 6, 5, 5, 2, 4, 7, 10, 3, 9, 6 };
int n = sizeof(A) / sizeof(A[0]);
int desiredsum = 40;
int total_soln=0;
for (int i = 0; i <= (1 << n); ++i)
{
vector < int >v;/*The vector contains element of a subset*/
for (int j = 0; j <= n; ++j)
{
if (i & 1 << j)
v.push_back(A[j]);
}
if (v.size() == 8)/*Check whether the size of the current subset is 8 or not*/
{
//if size is 8, check whether the sum of the elements of the current
// subset equals to desired sum or not
int sum = 0;
for (int j = 0; j < v.size(); ++j)
{
sum += v[j];
}
if (sum == desiredsum)
{
for (int j = 0; j < v.size(); ++j)
{
(j ==
v.size() - 1) ? cout << v[j] << "=" : cout << v[j] << "+";
}
total_soln++;
cout << desiredsum << " " << endl;
}
}
}
cout<<"Total Solutions: "<<total_soln<<endl;
return 0;
}
IDEONE LINK:http://ideone.com/31jh6c