in reply to How to generate restricted partitions of an integer
Encode the knowledge of what substitions are possible as data instead of code and let the regex engine take the strain.
#! perl -slw use strict; my %subs = ( 100 => '50 50', 50 => '20 20 10', 20 => '10 10', 10 => '5 5', 5 => '2 2 1', 2 => '1 1', ); my $re_conversion = '(' . join( '|', sort{ length $b <=> length $a } keys %subs ) . ')'; my $input ); do { printf 'Denomination to change[100|50|20|10|5|2]: '; chomp( $input = <STDIN> ); } until exists $subs{ $input }; print $input while $input =~ s[$re_conversion][$subs{ $1 }]; __END__ [11:58:38.32] P:\test>406984 Denomination to change[100|50|20|10|5|2]: 20 10 10 5 5 10 2 2 1 5 10 1 1 2 1 5 10 1 1 1 1 1 5 10 1 1 1 1 1 2 2 1 10 1 1 1 1 1 1 1 2 1 10 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 5 5 1 1 1 1 1 1 1 1 1 1 2 2 1 5 1 1 1 1 1 1 1 1 1 1 1 1 2 1 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: How to generate restricted partitions of an integer
by hv (Prior) on Nov 11, 2004 at 13:17 UTC | |
by thor (Priest) on Nov 11, 2004 at 13:23 UTC | |
by BrowserUk (Patriarch) on Nov 11, 2004 at 13:24 UTC |