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
|
#!/opt/perl/bin/perl
use 5.032;
use strict;
use warnings;
no warnings 'syntax';
use experimental 'signatures';
use experimental 'lexical_subs';
#
# See ../README.md
#
#
# Run as: perl ch-1.pl < input-file
#
#
# Given a chain and a starting number, check whether we can form a
# chain. We will return a list of parts if succes. Note:
# 1) If the start is the same as the string, we return a single
# item list.
# 2) We return the list in reverse order. Due to Perls memory
# management, N pushes will require O (log N) calls to
# malloc, and O (N) memory shuffles. This is worse if we
# use N unshifts.
#
# Note the running time is O (N), despite recursing twice. This is
# because there is no number X such that X + 1 and X - 1 are the same
# number. Hence, in at least one of the recursive make_sequence calls the
# 'start' will not match the beginning of 'string'.
#
sub make_sequence ($string, $start) {
if ($string eq $start) {
return [$start]
}
if (index ($string, $start) == 0) {
my $tail = substr $string, length $start;
my $rest;
if (($rest = make_sequence ($tail, $start + 1)) ||
($rest = make_sequence ($tail, $start - 1))) {
push @$rest => $start;
return $rest;
}
}
return;
}
INPUT: while (<>) {
chomp;
for my $i (1 .. length) {
#
# Try to make a chain with each possible start.
#
my $result = make_sequence $_, substr $_, 0, $i;
if ($result) {
say join "," => reverse @$result;
next INPUT;
}
}
}
__END__
|