Here's a regex solution. It will find a solution if one exists, and will run reasonably fast, all things considered.
my $desired_page_count = 10;
# Structure holding all the different page layouts. ('l' = Landsca
+pe, 'p' = Portrait)
my $pages = {
ll => '01',
pp => '02',
lp => '03',
pl => '04',
lpp => '05',
pll => '06',
plp => '07',
lpl => '08',
lll => '09',
ppp => '10',
ppl => '11',
llp => '12',
ppll => '13',
llpp => '14',
};
my $regex = join '|', keys %$pages;
print "Regex is $regex\n";
my $photos = "llppllpplpppllplpplpplpllplpll";
my $pages_left = $desired_page_count - 1;
while ($photos =~ s/^($regex)(?=(?:$regex){$pages_left}$)//) {
print "$1\n";
# Reorder the regex so that the most-recently-used is the last o
+ption
$regex = join '|', (grep {$_ ne $1} keys %$pages), $1;
--$pages_left;
}
print "Failed to layout the whole set: $photos does not match $rege
+x\n" if $photos;
Caution: Contents may have been coded under pressure.
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, details, 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, summary, 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.