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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#!/usr/bin/env perl
# vim:set ts=4 sw=4 sts=4 et ai wm=0 nu:
#=============================================================================
# ch-2.pl Perl Weekly Challenge 245 Task 2 Largest of Three
#=============================================================================
# Copyright (c) 2023, Bob Lied
#=============================================================================
# You are given an array of integers >= 0.
# Write a script to return the largest number formed by concatenating
# some of the given integers in any order which is also multiple of 3.
# Return -1 if none found.
# Example 1 Input: @ints = (8, 1, 9)
# Output: 981 because 981 % 3 == 0
# Example 2 Input: @ints = (8, 6, 7, 1, 0)
# Output: 8760
# Example 3 Input: @ints = (1)
# Output: -1
#----------
# Note that all the examples show single digit integers, but the problem
# says integers in general.
#=============================================================================
use v5.38;
use builtin qw/true false/; no warnings "experimental::builtin";
use Getopt::Long;
my $Verbose = 0;
my $DoTest = 0;
GetOptions("test" => \$DoTest, "verbose" => \$Verbose);
exit(!runTest()) if $DoTest;
{
use List::Util qw/all/;
die "Numbers must be >= 0" unless all { $_ >= 0 } @ARGV;
}
say big3(@ARGV);
sub is3($n) { join("", @$n) % 3 == 0 }
sub _big3($ints, $indent)
{
say "${indent}Enter (@$ints)" if $Verbose;
return -1 unless @$ints;
if ( is3($ints) )
{
say "${indent}Found @$ints" if $Verbose;
return 0 + join("", @$ints);
}
# Single digits fail at this point
return -1 if @$ints == 1;
# Try removing the smallest numbers first.
# ints is known to be sorted descending.
for ( my $exclude = $ints->$#* ; $exclude >= 0 ; $exclude-- )
{
# Never remove a zero; they will make the number 10 times bigger
next if $ints->[$exclude] == 0;
my @smaller = ( $ints->@[0 .. $exclude-1], $ints->@[$exclude+1 .. $ints->$#*] );
if ( is3( \@smaller ) )
{
say "${indent}Found @smaller" if $Verbose;
return 0 + join("", @smaller);
}
else
{
my $answer = _big3(\@smaller, " $indent");
say "${indent}returning $answer" if $Verbose;
return $answer if $answer >= 0;
}
}
say "${indent}fail, return -1" if $Verbose;
return -1;
}
sub big3(@ints)
{
# Put biggest values first
@ints = sort { $b <=> $a } @ints;
return _big3(\@ints, "");
}
sub runTest
{
use Test2::V0;
use builtin qw/true false/; no warnings "experimental::builtin";
is( is3([ 0]), true, "is3 0");
is( is3([ 8]), false, "is3 8");
is( is3([ 9]), true, "is3 9");
is( is3([ 4,7]), false, "is3 47");
is( is3([ 4,8]), true, "is3 48");
is( is3([1,4,3]), false, "is3 143");
is( is3([1,4,4]), true, "is3 144");
is( is3([14,34]), true, "is3 1434");
is( big3(8,1,9 ), 981, "Example 1");
is( big3(8,6,7,1,0), 8760, "Example 2");
is( big3(1 ), -1, "Example 3");
done_testing;
}
|