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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
#!perl
################################################################################
=comment
Perl Weekly Challenge 257
=========================
TASK #2
-------
*Reduced Row Echelon*
Submitted by: Ali Moradi
Given a matrix M, check whether the matrix is in reduced row echelon form.
A matrix must have the following properties to be in reduced row echelon form:
1. If a row does not consist entirely of zeros, then the first
nonzero number in the row is a 1. We call this the leading 1.
2. If there are any rows that consist entirely of zeros, then
they are grouped together at the bottom of the matrix.
3. In any two successive rows that do not consist entirely of zeros,
the leading 1 in the lower row occurs farther to the right than
the leading 1 in the higher row.
4. Each column that contains a leading 1 has zeros everywhere else
in that column.
For example:
[
[1,0,0,1],
[0,1,0,2],
[0,0,1,3]
]
The above matrix is in reduced row echelon form since the first nonzero number
in each row is a 1, leading 1s in each successive row are farther to the right,
and above and below each leading 1 there are only zeros.
For more information check out this wikipedia
[https://en.wikipedia.org/wiki/Row_echelon_form|article].
Example 1
Input: $M = [
[1, 1, 0],
[0, 1, 0],
[0, 0, 0]
]
Output: 0
Example 2
Input: $M = [
[0, 1,-2, 0, 1],
[0, 0, 0, 1, 3],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]
]
Output: 1
Example 3
Input: $M = [
[1, 0, 0, 4],
[0, 1, 0, 7],
[0, 0, 1,-1]
]
Output: 1
Example 4
Input: $M = [
[0, 1,-2, 0, 1],
[0, 0, 0, 0, 0],
[0, 0, 0, 1, 3],
[0, 0, 0, 0, 0]
]
Output: 0
Example 5
Input: $M = [
[0, 1, 0],
[1, 0, 0],
[0, 0, 0]
]
Output: 0
Example 6
Input: $M = [
[4, 0, 0, 0],
[0, 1, 0, 7],
[0, 0, 1,-1]
]
Output: 0
=cut
################################################################################
#--------------------------------------#
# Copyright © 2024 PerlMonk Athanasius #
#--------------------------------------#
#===============================================================================
=comment
Interface
---------
1. If no command-line arguments are given, the test suite is run. Otherwise:
2. The input matrix M is entered on the command-line as a non-empty list of
strings (the matrix rows) containing elements separated by whitespace. For
example, the matrix:
[ 1 1 0 ]
[ 0 1 0 ]
[ 0 0 0 ]
is entered as: >raku ch-2.raku "1 1 0" "0 1 0" "0 0 1"
Assumptions
-----------
1. The input matrix M is an integer matrix.
2. M is not an empty matrix.
Note
----
Matrix-handling code is adapted from the solution to Task 2 for Week 248.
=cut
#===============================================================================
use v5.32.1; # Enables strictures
use warnings;
use Const::Fast;
use Regexp::Common qw( number );
use Test::More;
use enum qw( AllZeros LeadingOne Other );
const my $USAGE => <<END;
Usage:
perl $0 [<M> ...]
perl $0
[<M> ...] A non-empty integer matrix
END
#-------------------------------------------------------------------------------
BEGIN
#-------------------------------------------------------------------------------
{
$| = 1;
print "\nChallenge 257, Task #2: Reduced Row Echelon (Perl)\n\n";
}
#===============================================================================
MAIN:
#===============================================================================
{
if (scalar @ARGV == 0)
{
run_tests();
}
else
{
my $matrix = parse_matrix( \@ARGV );
print_matrix( 'Input: $M = ', $matrix );
printf "Output: %d\n", is_reduced_row_echelon( $matrix );
}
}
#-------------------------------------------------------------------------------
sub is_reduced_row_echelon
#-------------------------------------------------------------------------------
{
my ($matrix) = @_;
# Test matrix properties 1 and 2:
# 1. If a row does not consist entirely of zeros, then the first nonzero
# number in the row is a 1. We call this the leading 1.
# 2. If there are any rows that consist entirely of zeros, then they are
# grouped together at the bottom of the matrix.
my $row_types = classify_rows( $matrix );
my $all_zeros = 0;
for my $type (@$row_types)
{
if ($type == AllZeros)
{
$all_zeros = 1;
}
elsif ($type == LeadingOne)
{
return 0 if $all_zeros; # Requirement 2
}
else
{
return 0; # Requirement 1
}
}
# Test matrix properties 3 and 4:
# 3. In any two successive rows that do not consist entirely of zeros, the
# leading 1 in the lower row occurs farther to the right than the leading
# 1 in the higher row.
# 4. Each column that contains a leading 1 has zeros everywhere else in that
# column.
return check_leading_ones( $matrix, $row_types );
}
#-------------------------------------------------------------------------------
sub classify_rows
#-------------------------------------------------------------------------------
{
my ($matrix) = @_;
my $width = scalar @{ $matrix->[ 0 ] };
my @row_types;
L_OUTER:
for my $r (0 .. $#$matrix)
{
my $row = $matrix->[ $r ];
for my $c (0 .. $width - 1)
{
my $element = $row->[ $c ];
if ($element == 1)
{
push @row_types, LeadingOne;
next L_OUTER;
}
elsif ($element != 0)
{
push @row_types, Other;
next L_OUTER;
}
}
push @row_types, AllZeros;
}
return \@row_types;
}
#-------------------------------------------------------------------------------
sub check_leading_ones
#-------------------------------------------------------------------------------
{
my ($matrix, $row_t) = @_;
my $width = scalar @{ $matrix->[ 0 ] };
my $last_one = -1;
for my $r (0 .. $#$matrix)
{
last if $row_t->[ $r ] == AllZeros;
my $row = $matrix->[ $r ];
for my $c (0 .. $width - 1)
{
my $element = $row->[ $c ];
if ($element == 1)
{
return 0 unless $c > $last_one; # Test Requirement 3
$last_one = $c;
for my $rr (0 .. $#$matrix) # Test Requirement 4
{
return 0 unless $rr == $r || $matrix->[ $rr ][ $c ] == 0;
}
last;
}
}
}
return 1;
}
#-------------------------------------------------------------------------------
sub parse_matrix
#-------------------------------------------------------------------------------
{
my ($M) = @_;
my (@matrix, $num_cols);
for my $row_str (@$M)
{
my @row;
for my $elem (grep { / \S /x } split / \s+ /x, $row_str)
{
if ($elem =~ / ^ $RE{num}{int} $ /x)
{
push @row, $elem;
}
else
{
error( qq[Element "$elem" is not a valid integer] );
}
}
push @matrix, \@row;
if (defined $num_cols)
{
scalar @row == $num_cols
or error( 'The input matrix is not rectangular' );
}
else
{
$num_cols = scalar @row;
$num_cols > 0 or error( 'Empty row' );
}
}
return \@matrix;
}
#-------------------------------------------------------------------------------
sub print_matrix
#-------------------------------------------------------------------------------
{
my ($prefix, $matrix) = @_;
my $tab = ' ' x length $prefix;
my @width = (1) x scalar @{ $matrix->[ 0 ] };
for my $row (@$matrix)
{
for my $i (0 .. $#$row)
{
my $w = length $row->[ $i ];
$width[ $i ] = $w if $w > $width[ $i ];
}
}
print "$prefix\[\n";
for my $row (@$matrix)
{
my @row_str;
for my $i (0 .. $#$row)
{
push @row_str, sprintf '%*d', $width[ $i ], $row->[ $i ];
}
printf "%s [%s]\n", $tab, join ', ', @row_str;
}
print "$tab]\n";
}
#-------------------------------------------------------------------------------
sub run_tests
#-------------------------------------------------------------------------------
{
print "Running the test suite\n";
while (my $line = <DATA>)
{
chomp $line;
my ($test_name, $matrix_str, $expected) = split / \| /x, $line;
for ($test_name, $matrix_str, $expected)
{
s/ ^ \s+ //x;
s/ \s+ $ //x;
}
my @M = split / \; /x, $matrix_str;
my $matrix = parse_matrix( \@M );
my $is_rre = is_reduced_row_echelon( $matrix );
is $is_rre, $expected, $test_name;
}
done_testing;
}
#-------------------------------------------------------------------------------
sub error
#-------------------------------------------------------------------------------
{
my ($message) = @_;
die "ERROR: $message\n$USAGE";
}
################################################################################
__DATA__
Example 0|1 0 0 1 ; 0 1 0 2 ; 0 0 1 3 |1
Example 1|1 1 0 ; 0 1 0 ; 0 0 0 |0
Example 2|
|