我是大学的实验室实践导师,根据去年的学生评论,我们希望我和我的老板都能够解决。我的老板选择继续编写C脚本,然后选择python(python-constraint)来尝试解决我们的问题。
资讯资讯
- 有6节课
- 有4个角色
- 有6种做法
- 有32名学生
- 每队有4名学生
问题:
在4个不同的阶段的4个练习中,为每个学生分配4个角色。
限制条件:
- 学生应该做一次角色
- 学生应在6种中进行4种不同的练习
- 学生每节只能做一次练习
- 学生只能见一次同伴
范本:
这是我对学生的感觉模板,每个团队由4个学生组成,职位[0、1、2或3]是分配给他们的角色。每个可用职位的编号从1到128
[# Semester
[ # Session
[ # Practice/Team
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]]]
换一种说法 :
这是一个会话:
[[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12],
[13, 14, 15, 16],
[17, 18, 19, 20],
[21, 22, 23, 24]],
这些团队采取相同的做法:
[
[1, 2, 3, 4],
[25, 26, 27, 28],
[49, 50, 51, 52],
[73, 74, 75, 76],
[97, 98, 99, 100],
[113, 114, 115, 116]
]
这些职位起着相同的作用:
[
1,
5,
9,
13,
17,
21,
25,
...
]
到目前为止,我有:
使用python-constraint,我能够验证前三个约束:
Valid solution : False
- sessions : [True, True, True, True, True, True]
- practices : [True, True, True, True, True, True]
- roles : [True, True, True, True]
- teams : [False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True, False, False, False, False, False]
对于那些可能有趣的人,我只是这样做:
对于每个条件,我都使用AllDifferentConstraint。例如,对于一个会话,我这样做:
problem.addConstraint(AllDifferentConstraint(), [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24])
我找不到约束团队的方法,而我的最后一次尝试semester
是:
def team_constraint(self, *semester):
students = defaultdict(list)
# get back each teams based on the format [# Semester [ #Session [# Practice/Team ...
teams = [list(semester[i:i+4]) for i in range(0, len(semester), 4)]
# Update Students dict with all mate they work with
for team in teams:
for student in team:
students[student] += [s for s in team if s != student]
# Compute for each student if they meet someone more than once
dupli = []
for student, mate in students.items():
dupli.append(len(mate) - len(set(mate)))
# Loosly constraint, if a student meet somone 0 or one time it's find
if max(dupli) >= 2:
print("Mate encounter more than one time", dupli, min(dupli) ,max(dupli))
return False
pprint(students)
return True
问题:
- 我可以根据团队条件做我想做的事情吗?我的意思是我不知道是否可以为每个学生分配12位伴侣,而他们每个人只能遇到一次相同的伴侣。
- 对于团队的约束,我是否错过了性能更高的算法?
- 有什么可以追随的吗?
(4, 4)
不是(4, 6)
其他的?