How to resolve the algorithm Ordered partitions step by step in the Wren programming language
How to resolve the algorithm Ordered partitions step by step in the Wren programming language
Table of Contents
Problem Statement
In this task we want to find the ordered partitions into fixed-size blocks. This task is related to Combinations in that it has to do with discrete mathematics and moreover a helper function to compute combinations is (probably) needed to solve this task.
p a r t i t i o n s (
a r g
1
,
a r g
2
, . . . ,
a r g
n
)
{\displaystyle partitions({\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n})}
should generate all distributions of the elements in
{ 1 , . . . ,
Σ
i
1
n
a r g
i
}
{\displaystyle {1,...,\Sigma {i=1}^{n}{\mathit {arg}}{i}}}
into
n
{\displaystyle n}
blocks of respective size
a r g
1
,
a r g
2
, . . . ,
a r g
n
{\displaystyle {\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n}}
. Example 1:
p a r t i t i o n s ( 2 , 0 , 2 )
{\displaystyle partitions(2,0,2)}
would create: Example 2:
p a r t i t i o n s ( 1 , 1 , 1 )
{\displaystyle partitions(1,1,1)}
would create: Note that the number of elements in the list is (see the definition of the binomial coefficient if you are not familiar with this notation) and the number of elements remains the same regardless of how the argument is permuted (i.e. the multinomial coefficient). Also,
p a r t i t i o n s ( 1 , 1 , 1 )
{\displaystyle partitions(1,1,1)}
creates the permutations of
{ 1 , 2 , 3 }
{\displaystyle {1,2,3}}
and thus there would be
3 !
6
{\displaystyle 3!=6}
elements in the list. Note: Do not use functions that are not in the standard library of the programming language you use. Your file should be written so that it can be executed on the command line and by default outputs the result of
p a r t i t i o n s ( 2 , 0 , 2 )
{\displaystyle partitions(2,0,2)}
. If the programming language does not support polyvariadic functions pass a list as an argument. Notation Here are some explanatory remarks on the notation used in the task description:
{ 1 , … , n }
{\displaystyle {1,\ldots ,n}}
denotes the set of consecutive numbers from
1
{\displaystyle 1}
to
n
{\displaystyle n}
, e.g.
{ 1 , 2 , 3 }
{\displaystyle {1,2,3}}
if
n
3
{\displaystyle n=3}
.
Σ
{\displaystyle \Sigma }
is the mathematical notation for summation, e.g.
Σ
i
1
3
i
6
{\displaystyle \Sigma _{i=1}^{3}i=6}
(see also [1]).
a r g
1
,
a r g
2
, . . . ,
a r g
n
{\displaystyle {\mathit {arg}}{1},{\mathit {arg}}{2},...,{\mathit {arg}}_{n}}
are the arguments — natural numbers — that the sought function receives.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Ordered partitions step by step in the Wren programming language
Source code in the wren programming language
import "os" for Process
var genPart // recursive so predeclare
genPart = Fn.new { |n, res, pos|
if (pos == res.count) {
var x = List.filled(n.count, null)
for (i in 0...x.count) x[i] = []
var i = 0
for (c in res) {
x[c].add(i+1)
i = i + 1
}
System.print(x)
return
}
for (i in 0...n.count) {
if (n[i] != 0) {
n[i] = n[i] - 1
res[pos] = i
genPart.call(n, res, pos+1)
n[i] = n[i] + 1
}
}
}
var orderedPart = Fn.new { |nParts|
System.print("Ordered %(nParts)")
var sum = 0
for (c in nParts) sum = sum + c
genPart.call(nParts, List.filled(sum, 0), 0)
}
var args = Process.arguments
if (args.count == 0) {
orderedPart.call([2, 0, 2])
return
}
var n = List.filled(args.count, 0)
var i = 0
for (a in args) {
n[i] = Num.fromString(a)
if (n[i] < 0) {
System.print("negative partition size not meaningful")
return
}
i = i + 1
}
orderedPart.call(n)
You may also check:How to resolve the algorithm Loops/Foreach step by step in the ReScript programming language
You may also check:How to resolve the algorithm Factors of an integer step by step in the Arturo programming language
You may also check:How to resolve the algorithm Mutex step by step in the D programming language
You may also check:How to resolve the algorithm Sierpinski triangle step by step in the R programming language
You may also check:How to resolve the algorithm Maximum triangle path sum step by step in the Quackery programming language