Problem H
Pascal's Hyper-Pyramids

We programmers know and love Pascal’s triangle: an array of
numbers with
Pascal’s hyper-pyramids generalize
the triangle to higher dimensions. In
-
, the value immediately below it if we are not on the bottom face ( ); -
, the value immediately behind if we are not on the back face ( ); -
, the value immediately to the left if we are not on the leftmost face ( ).
All values at the bottom, back, and leftmost faces are
The following figure depicts Pascal’s 3D-pyramid of height
|
|
|
|
|
|
|
|
|
|
For example, the number at position
The size of each layer grows quadratically with the height
of the pyramid, but there are many repeated values due to
symmetries: numbers at positions that are permutations of one
another must be equal. For example, the numbers at positions
Task
Write a program that, given the number of dimensions
Input
A single line with two positive integers: the number of
dimensions,
Constraints
|
|
|
|
|
Number of dimensions |
|
|
|
|
|
Height |
|
Output
The set of numbers at the base of the hyper-pyramid, with no repetitions, one number per line, and in ascending order.
Sample Input 1 | Sample Output 1 |
---|---|
2 5 |
1 4 6 |
Sample Input 2 | Sample Output 2 |
---|---|
3 5 |
1 4 6 12 |