随机性很有趣。没有意义的挑战很有趣。
编写一个函数,在给定整数输入的情况下n
,将输出介于和(包括)之间的一组(无序,唯一的)精确n
随机整数,以使所有整数的总和等于。1
n^2
n^2
随机性也不会是均匀的,只要每个有效集有发生非零机会。
以字节为单位的最短答案(每种语言)获胜。
例子
Input (n) = 1, Target (n^2) = 1
Sample of possible outputs:
1
Input = 2, Target = 4
Sample of possible outputs:
3, 1
1, 3
Input = 3, Target = 9
Sample of possible outputs:
6, 1, 2
3, 5, 1
4, 3, 2
Input = 4, Target = 16
Sample of possible outputs:
1, 3, 5, 7
2, 4, 1, 9
8, 3, 1, 4
Input = 5, Target = 25
Sample of possible outputs:
11, 4, 7, 1, 2
2, 3, 1, 11, 8
6, 1, 3, 7, 8
Input = 8, Target = 64
Sample of possible outputs:
10, 3, 9, 7, 6, 19, 8, 2
7, 16, 2, 3, 9, 4, 13, 10
7, 9, 21, 2, 5, 13, 6, 1
奖励任务:是否有一个公式可以计算给定的有效排列数量n
?