我不知道这是否正是你所要求的,但在这里我用简单的 python 来处理它。它会为(在我的示例中)10 个学生提供每个独特的分组。
我猜这不是最快的事情,但它很容易实现和遵循。
from itertools import permutations
def my_sort(x):
assert type(x) in (tuple, list)
assert len(x)==10
groups = x[0:2],x[2:4],x[4:6],x[6:8],x[8:10]
groups = sorted([sorted(g) for g in groups], key=lambda k:k[0])
return tuple(x for g in groups for x in g )
S = set(my_sort(p) for p in permutations(list(range(10))))
"""
len(S) == 945
list(sorted(S))[-3:] == [(0, 9, 1, 8, 2, 7, 3, 4, 5, 6), (0, 9, 1, 8, 2, 7, 3, 5, 4, 6), (0, 9, 1, 8, 2, 7, 3, 6, 4, 5)]
"""
一个元组表示一行中的所有组:(0, 9, 1, 8, 2, 7, 3, 4, 5, 6) 表示 0 与 9 分组,1 与 8 分组,依此类推。