-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmatrix_path_2-ways_greedy.pl
executable file
·85 lines (62 loc) · 1.64 KB
/
matrix_path_2-ways_greedy.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
77
78
79
80
81
82
83
84
85
#!/usr/bin/perl
# Author: Daniel "Trizen" Șuteu
# License: GPLv3
# Date: 08 August 2016
# Website: https://github.com/trizen
# Find the greedy-minimum path from each end of a square matrix.
# Inspired by: https://projecteuler.net/problem=81
# "Path 1" is from the top-left of the matrix, to the bottom-right.
# "Path 2" is from the bottom-right of the matrix, to the top-left.
# "Path 1" moves only right and down.
# "Path 2" moves only left and up.
use 5.010;
use strict;
use warnings;
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],
);
my $end = $#matrix;
my @path_1;
my @path_2;
{
my $i = 0;
my $j = 0;
push @path_1, $matrix[$i][$j];
while (1) {
if ( exists($matrix[$i][$j + 1])
and exists($matrix[$i + 1])
and $matrix[$i][$j + 1] < $matrix[$i + 1][$j]) {
++$j;
}
else {
++$i;
}
push @path_1, $matrix[$i][$j];
if ($i == $end and $j == $end) { last }
}
}
{
my $i = $end;
my $j = $end;
push @path_2, $matrix[$i][$j];
while (1) {
if ( $j - 1 >= 0
and $i - 1 >= 0
and exists($matrix[$i][$j - 1])
and exists($matrix[$i - 1])
and $matrix[$i][$j - 1] < $matrix[$i - 1][$j]) {
--$j;
}
else {
--$i;
}
push @path_2, $matrix[$i][$j];
if ($i == 0 and $j == 0) { last }
}
}
say "Path 1: [@path_1]";
say "Path 2: [@path_2]";