The word "combination" in the title brought Algorithm::Combinatorics to mind. I'm not sure if duplicate sums, e.g. the several 5+5+10+80 combinations in the third example, should all be shown but I have eliminated them. This code
use strict;
use warnings;
use feature qw{ say };
use Algorithm::Combinatorics qw{ combinations };
use List::Util qw{ sum };
my @tests = (
{
target => 100,
values => [ 1, 99, 2, 40, 50, 100, 60, 90, 3, 5, 95, 100 ],
},
{
target => 10,
values => [ 1, 3, 2, 4 ],
},
{
target => 100,
values => [ 5, 5, 5, 5, 10, 15, 80, 99 ],
},
);
foreach my $rhTest ( @tests )
{
say
qq{\nFind sums from },
join( q{, }, @{ $rhTest->{ values } } ),
qq{ making $rhTest->{ target }};
say for do {
my %seen;
grep { ! $seen{ $_ } ++ }
grep { $_ == $rhTest->{ target } }
@{ $rhTest->{ values } };
};
for my $sumsOf ( 2 .. scalar @{ $rhTest->{ values } } )
{
my $combIter = combinations( $rhTest->{ values }, $sumsOf );
my %seen;
while ( my $raComb = $combIter->next() )
{
next if $seen{ join q{+}, sort { $a <=> $b } @{ $raComb }
+} ++;
say join q{+}, @{ $raComb }
if $rhTest->{ target } == sum @{ $raComb };
}
}
}
produces
Find sums from 1, 99, 2, 40, 50, 100, 60, 90, 3, 5, 95, 100 making 100
100
1+99
40+60
5+95
2+3+95
2+90+3+5
2+40+50+3+5
Find sums from 1, 3, 2, 4 making 10
1+3+2+4
Find sums from 5, 5, 5, 5, 10, 15, 80, 99 making 100
5+15+80
5+5+10+80
5+5+5+5+80
I hope this is helpful.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.