-
Notifications
You must be signed in to change notification settings - Fork 34
/
matrix_path_4-ways_best_2.pl
executable file
·76 lines (55 loc) · 1.58 KB
/
matrix_path_4-ways_best_2.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/perl
# Author: Daniel "Trizen" Șuteu
# License: GPLv3
# Date: 13 August 2016
# Website: https://github.com/trizen
# In the 5 by 5 matrix below, the minimal path sum from the top left
# to the bottom right, by moving left, right, up, and down, is equal to 2297.
# Problem from: https://projecteuler.net/problem=83
# (this algorithm is scalable only up to 7x7 matrices)
use 5.010;
use strict;
use warnings;
use Memoize qw(memoize);
my @matrix = (
[131, 673, 234, 103, 18],
[201, 96, 342, 965, 150],
[630, 803, 746, 422, 111],
[537, 699, 497, 121, 956],
[805, 732, 524, 37, 331],
);
memoize('path');
my $end = $#matrix;
sub path {
my ($i, $j, $seen) = @_;
my @seen = split(' ', $seen);
my $valid = sub {
my %seen;
@seen{@seen} = ();
not exists $seen{"$_[0]:$_[1]"};
};
if ($i >= $end and $j >= $end) {
return $matrix[$i][$j];
}
my @points;
if ($j < $end and $valid->($i, $j + 1)) {
push @points, [$i, $j + 1];
}
if ($i > 0 and $valid->($i - 1, $j)) {
push @points, [$i - 1, $j];
}
if ($j > 0 and $valid->($i, $j - 1)) {
push @points, [$i, $j - 1];
}
if ($i < $end and $valid->($i + 1, $j)) {
push @points, [$i + 1, $j];
}
my $min = 'inf';
my $snn = join(' ', sort (@seen, map { join(':', @$_) } @points));
foreach my $point (@points) {
my $sum = path(@$point, $snn);
$min = $sum if $sum < $min;
}
$min + $matrix[$i][$j];
}
say path(0, 0, '');