fork(3) download
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <vector>
  4. using namespace std;
  5. int main()
  6. {
  7. int A[] = { 1, 7, 7, 4, 6, 5, 5, 2, 4, 7, 10, 3, 9, 6 };
  8. int n = sizeof(A) / sizeof(A[0]);
  9. int desiredsum = 40;
  10. int total_soln=0;
  11. for (int i = 0; i <= (1 << n); ++i)
  12. {
  13. vector < int >v;/*The vector contains element of a subset*/
  14. for (int j = 0; j <= n; ++j)
  15. {
  16. if (i & 1 << j)
  17. v.push_back(A[j]);
  18. }
  19. if (v.size() == 8)/*Check whether the size of the current subset is 8 or not*/
  20. {
  21. //if size is 8, check whether the sum of the elements of the current subset equals to desired sum or not
  22. int sum = 0;
  23. for (int j = 0; j < v.size(); ++j)
  24. {
  25. sum += v[j];
  26. }
  27. if (sum == desiredsum)
  28. {
  29. for (int j = 0; j < v.size(); ++j)
  30. {
  31. (j ==
  32. v.size() - 1) ? cout << v[j] << "=" : cout << v[j] << "+";
  33. }
  34. total_soln++;
  35. cout << desiredsum << " " << endl;
  36. }
  37. }
  38. }
  39. cout<<"Total Solutions: "<<total_soln<<endl;
  40. return 0;
  41. }
  42.  
Success #stdin #stdout 0.01s 2984KB
stdin
Standard input is empty
stdout
7+7+4+6+5+5+2+4=40 
1+7+7+6+5+5+2+7=40 
1+7+7+4+5+5+4+7=40 
7+4+6+5+5+2+4+7=40 
7+4+6+5+5+2+4+7=40 
1+7+4+6+5+5+2+10=40 
1+7+4+6+5+5+2+10=40 
1+7+7+4+5+2+4+10=40 
1+7+7+4+5+2+4+10=40 
1+7+6+5+5+2+4+10=40 
1+7+6+5+5+2+4+10=40 
1+4+6+5+5+2+7+10=40 
1+7+4+5+2+4+7+10=40 
1+7+4+5+2+4+7+10=40 
1+7+4+5+2+4+7+10=40 
1+7+4+5+2+4+7+10=40 
1+6+5+5+2+4+7+10=40 
1+7+7+4+6+5+7+3=40 
1+7+7+4+6+5+7+3=40 
7+7+4+5+5+2+7+3=40 
1+7+7+6+5+4+7+3=40 
1+7+7+6+5+4+7+3=40 
7+7+4+6+2+4+7+3=40 
7+7+5+5+2+4+7+3=40 
1+7+7+4+6+2+10+3=40 
1+7+7+5+5+2+10+3=40 
1+7+4+6+5+4+10+3=40 
1+7+4+6+5+4+10+3=40 
1+7+4+6+5+4+10+3=40 
1+7+4+6+5+4+10+3=40 
1+7+7+6+2+4+10+3=40 
7+4+5+5+2+4+10+3=40 
7+4+5+5+2+4+10+3=40 
1+7+4+6+2+7+10+3=40 
1+7+4+6+2+7+10+3=40 
1+7+5+5+2+7+10+3=40 
1+7+5+5+2+7+10+3=40 
1+4+6+5+4+7+10+3=40 
1+4+6+5+4+7+10+3=40 
1+7+6+2+4+7+10+3=40 
1+7+6+2+4+7+10+3=40 
4+5+5+2+4+7+10+3=40 
1+7+7+4+5+5+2+9=40 
1+7+7+4+6+2+4+9=40 
1+7+7+5+5+2+4+9=40 
1+7+4+5+5+2+7+9=40 
1+7+4+5+5+2+7+9=40 
1+7+4+6+2+4+7+9=40 
1+7+4+6+2+4+7+9=40 
1+7+5+5+2+4+7+9=40 
1+7+5+5+2+4+7+9=40 
1+4+5+5+2+4+10+9=40 
1+7+4+6+5+5+3+9=40 
1+7+4+6+5+5+3+9=40 
1+7+7+6+5+2+3+9=40 
1+7+7+6+5+2+3+9=40 
1+7+7+4+5+4+3+9=40 
1+7+7+4+5+4+3+9=40 
1+7+6+5+5+4+3+9=40 
1+7+6+5+5+4+3+9=40 
7+4+6+5+2+4+3+9=40 
7+4+6+5+2+4+3+9=40 
7+4+6+5+2+4+3+9=40 
7+4+6+5+2+4+3+9=40 
1+4+6+5+5+7+3+9=40 
1+7+7+4+2+7+3+9=40 
1+7+6+5+2+7+3+9=40 
1+7+6+5+2+7+3+9=40 
1+7+6+5+2+7+3+9=40 
1+7+6+5+2+7+3+9=40 
1+7+4+5+4+7+3+9=40 
1+7+4+5+4+7+3+9=40 
1+7+4+5+4+7+3+9=40 
1+7+4+5+4+7+3+9=40 
1+6+5+5+4+7+3+9=40 
1+7+7+2+4+7+3+9=40 
4+6+5+2+4+7+3+9=40 
4+6+5+2+4+7+3+9=40 
1+4+6+5+2+10+3+9=40 
1+4+6+5+2+10+3+9=40 
1+7+4+2+4+10+3+9=40 
1+7+4+2+4+10+3+9=40 
1+6+5+2+4+10+3+9=40 
1+6+5+2+4+10+3+9=40 
1+4+2+4+7+10+3+9=40 
1+7+7+4+6+5+4+6=40 
1+7+7+4+6+5+4+6=40 
7+7+4+5+5+2+4+6=40 
1+7+7+4+6+2+7+6=40 
1+7+7+5+5+2+7+6=40 
1+7+4+6+5+4+7+6=40 
1+7+4+6+5+4+7+6=40 
1+7+4+6+5+4+7+6=40 
1+7+4+6+5+4+7+6=40 
1+7+7+6+2+4+7+6=40 
7+4+5+5+2+4+7+6=40 
7+4+5+5+2+4+7+6=40 
1+7+4+5+5+2+10+6=40 
1+7+4+5+5+2+10+6=40 
1+7+4+6+2+4+10+6=40 
1+7+4+6+2+4+10+6=40 
1+7+5+5+2+4+10+6=40 
1+7+5+5+2+4+10+6=40 
1+4+5+5+2+7+10+6=40 
1+4+6+2+4+7+10+6=40 
1+5+5+2+4+7+10+6=40 
1+7+7+6+5+5+3+6=40 
7+7+4+6+5+2+3+6=40 
7+7+4+6+5+2+3+6=40 
7+4+6+5+5+4+3+6=40 
7+4+6+5+5+4+3+6=40 
7+7+6+5+2+4+3+6=40 
7+7+6+5+2+4+3+6=40 
1+7+7+4+5+7+3+6=40 
1+7+7+4+5+7+3+6=40 
1+7+6+5+5+7+3+6=40 
1+7+6+5+5+7+3+6=40 
7+4+6+5+2+7+3+6=40 
7+4+6+5+2+7+3+6=40 
7+4+6+5+2+7+3+6=40 
7+4+6+5+2+7+3+6=40 
1+7+7+5+4+7+3+6=40 
1+7+7+5+4+7+3+6=40 
4+6+5+5+4+7+3+6=40 
7+7+4+2+4+7+3+6=40 
7+6+5+2+4+7+3+6=40 
7+6+5+2+4+7+3+6=40 
7+6+5+2+4+7+3+6=40 
7+6+5+2+4+7+3+6=40 
1+4+6+5+5+10+3+6=40 
1+7+7+4+2+10+3+6=40 
1+7+6+5+2+10+3+6=40 
1+7+6+5+2+10+3+6=40 
1+7+6+5+2+10+3+6=40 
1+7+6+5+2+10+3+6=40 
1+7+4+5+4+10+3+6=40 
1+7+4+5+4+10+3+6=40 
1+7+4+5+4+10+3+6=40 
1+7+4+5+4+10+3+6=40 
1+6+5+5+4+10+3+6=40 
1+7+7+2+4+10+3+6=40 
4+6+5+2+4+10+3+6=40 
4+6+5+2+4+10+3+6=40 
1+7+4+2+7+10+3+6=40 
1+7+4+2+7+10+3+6=40 
1+6+5+2+7+10+3+6=40 
1+6+5+2+7+10+3+6=40 
1+4+5+4+7+10+3+6=40 
1+4+5+4+7+10+3+6=40 
1+7+2+4+7+10+3+6=40 
1+7+2+4+7+10+3+6=40 
1+7+4+6+5+2+9+6=40 
1+7+4+6+5+2+9+6=40 
1+7+4+6+5+2+9+6=40 
1+7+4+6+5+2+9+6=40 
1+4+6+5+5+4+9+6=40 
1+7+7+4+2+4+9+6=40 
1+7+6+5+2+4+9+6=40 
1+7+6+5+2+4+9+6=40 
1+7+6+5+2+4+9+6=40 
1+7+6+5+2+4+9+6=40 
1+4+6+5+2+7+9+6=40 
1+4+6+5+2+7+9+6=40 
1+7+4+2+4+7+9+6=40 
1+7+4+2+4+7+9+6=40 
1+6+5+2+4+7+9+6=40 
1+6+5+2+4+7+9+6=40 
1+7+4+5+5+3+9+6=40 
1+7+4+5+5+3+9+6=40 
1+7+7+5+2+3+9+6=40 
1+7+7+5+2+3+9+6=40 
4+6+5+5+2+3+9+6=40 
1+7+4+6+4+3+9+6=40 
1+7+4+6+4+3+9+6=40 
1+7+5+5+4+3+9+6=40 
1+7+5+5+4+3+9+6=40 
7+4+5+2+4+3+9+6=40 
7+4+5+2+4+3+9+6=40 
7+4+5+2+4+3+9+6=40 
7+4+5+2+4+3+9+6=40 
6+5+5+2+4+3+9+6=40 
1+4+5+5+7+3+9+6=40 
1+7+5+2+7+3+9+6=40 
1+7+5+2+7+3+9+6=40 
1+7+5+2+7+3+9+6=40 
1+7+5+2+7+3+9+6=40 
1+4+6+4+7+3+9+6=40 
1+5+5+4+7+3+9+6=40 
4+5+2+4+7+3+9+6=40 
4+5+2+4+7+3+9+6=40 
1+4+5+2+10+3+9+6=40 
1+4+5+2+10+3+9+6=40 
1+5+2+4+10+3+9+6=40 
1+5+2+4+10+3+9+6=40 
Total Solutions: 194