Fantastic!
I suppose i can optimize it using for my $row ( $center_r - $radius .. $center_r + $radius ) instead of processing the whole AoA
I never seen >> before: seems a int( $_ / 2) operator.. thanks for this too!
L*
update
I adapted to return a hash instead. I feel happy with it. Thanks again
#!/usr/bin/perl
use strict;
use warnings;
use List::Util qw( max min );
my $max = 19; #from OP
my @aoa = map { [ ( 'o' ) x ($max + 1) ] } 0..$max; #from OP
my %illu = illuminate( 0,0,12 );
display(@aoa);
%illu = illuminate( 0,10,4 );
display(@aoa);
%illu = illuminate( 10,10,6 );
display(@aoa);
%illu = illuminate( 10,0,5.5 );
display(@aoa);
sub illuminate{
my $center_r = shift;
my $center_c = shift;
my $radius = shift;
my %ret;
foreach my $row ( $center_r - $radius .. $center_r + $radius ){
my $delta_x = $radius ** 2 - ($center_r - $row) ** 2;
if( $delta_x >= 0 ){
$delta_x = int sqrt $delta_x;
my $low = max 0, $center_c - $delta_x;
my $high = min $#{ $aoa[$row] }, $center_c + $delta_x;
map { $ret{ $row.'_'.$_ }++ } $low .. $high;
}
}
return %ret;
}
sub display{
print "\n";
foreach my $row ( 0..$#aoa ){
foreach my $col ( 0..$#{$aoa[$row]} ){
print $illu{$row.'_'.$col} ? ' ' : $aoa[$row][$col] ;
+
}
print "\n"
}
}
There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.
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.
|
|