随着现在产业的发展,7*24小时服务的需要,人员排班的问题,逐渐成为了企业管理中的重要环节。人员排班在许多行业都具有广泛的应用价值,制造业, 医疗行业,餐饮业,零售业,旅游业,客服中心等。总之,人员排班在各行各业都具有重要的实际应用价值,可以帮助企业和机构提高管理效率、降低成本,同时提升员工的工作满意度和整体效能。
人员排班问题在建模时需要考虑多种约束条件:
我们需要考虑企业内各岗位的需求、员工的工作能力以及工作时间的限制等因素。此外,还需关注企业成本与员工满意度的权衡,以确保在合理控制成本的前提下,最大程度地提高员工的工作满意度。属于一个约束复杂,且多目标的问题。在用数学规划方法进行排班时,建议做一些业务逻辑简化问题,否则容易出现问题太大或者不可解的情况。
下面我们将通过一个简单的例子,讲解如何使用数学规划的方法来做人员排班。
个公司有客服岗工作需要安排,不同时间段有不同的用户需求。该公司安排员工上班的班次有三种:早班8-16点、晚班16-24点和夜班0-8点。一周员工最多安排5天上班,最少休息2天。需要保障值班员工能满足需求,且要保障员工休息时间,如前一天安排晚班后,第二天不能安排早班。
请问怎么安排总上班的班次最少,此时的班表是什么样的?
首先根据工作量预估每天早、中、晚三个班次需要的最少的上班人数。然后我们根据值班最大值,预估我们需要的人数c。
集合
参数
变量
约束
目标
min ∑ d ∈ D , s ∈ S , e ∈ E x d , s , e subject to ∑ e ∈ E x d , s , e ≥ N d , s , ∀ d ∈ D , s ∈ S ∑ s ∈ S x d , s , e ≤ 1 , ∀ d ∈ D , e ∈ E x d , 3 , e + x d + 1 , 1 , e ≤ 1 , ∀ d ∈ D , e ∈ E ∑ d ∈ D , s ∈ S x d , s , e ≤ 5 , ∀ e ∈ E x d , s , e ∈ { 0 , 1 } min∑d∈D,s∈S,e∈Exd,s,esubject to∑e∈Exd,s,e≥Nd,s,∀d∈D,s∈S∑s∈Sxd,s,e≤1,∀d∈D,e∈Exd,3,e+xd+1,1,e≤1,∀d∈D,e∈E∑d∈D,s∈Sxd,s,e≤5,∀e∈Exd,s,e∈{0,1} minsubject tod∈D,s∈S,e∈E∑xd,s,ee∈E∑xd,s,e≥Nd,s,∀d∈D,s∈Ss∈S∑xd,s,e≤1,∀d∈D,e∈Exd,3,e+xd+1,1,e≤1,∀d∈D,e∈Ed∈D,s∈S∑xd,s,e≤5,∀e∈Exd,s,e∈{0,1}
复制代码不能直接运行,需要在IDEA pom.xml中导入阿帕奇读取csv文件的依赖,并且需要导入ortools的maven依赖。
数据可在文章开头阿里mindopt案例地址中获取。
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.7</version>
</dependency>
package main.java.mindoptdemo;
import com.google.ortools.Loader;
import com.google.ortools.sat.*;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVRecord;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.logging.Logger;
import java.io.IOException;
import java.io.Reader;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.stream.IntStream;
public class EmployeeSchedulingProblem {
public int n_shifts;
public int n_days;
public int n_employees;
int[] days;
int[] shifts;
int[] employees;
int[][] demandOfEmployees;
public static Logger logger = Logger.getLogger("myLogger");
public int getDemandOfEmployees(int day, int shift) {
return demandOfEmployees[day][shift];
}
public EmployeeSchedulingProblem() throws IOException {
demandOfEmployees = this.readFile();
employees = IntStream.range(0, n_employees).toArray();
days = IntStream.range(0, n_days).toArray();
shifts = IntStream.range(0, n_shifts).toArray();
}
public int[][] readFile() throws IOException {
this.n_shifts = 0;
try (Reader reader = Files.newBufferedReader(Paths.get("src/main/java/mindoptdemo/班次.csv"))) {
Iterable<CSVRecord> records = CSVFormat.DEFAULT.parse(reader);
records.iterator().next(); // 跳过第一行
for (CSVRecord record : records) {
String shift = (record.get(0)); // 星期1到星期7,索引为0,故-1
n_shifts += 1;
}
} catch (IOException e) {
logger.warning(e.getMessage());
}
// 调度周期:7天,3班倒
this.n_days = (int) Files.lines(Paths.get(new File("src/main/java/mindoptdemo/需求人数.csv").getPath())).count() - 1;
int[][] demandOfEmps = new int[n_days][n_shifts];
// commons-csv读取csv文件,需要导入依赖
try (Reader reader = Files.newBufferedReader(Paths.get("src/main/java/mindoptdemo/需求人数.csv"))) {
Iterable<CSVRecord> records = CSVFormat.DEFAULT.parse(reader);
records.iterator().next(); // 跳过第一行
for (CSVRecord record : records) {
int day = Integer.parseInt(record.get(0)) - 1; // 星期1到星期7,索引为0,故-1
int morningShiftEmpNum = Integer.parseInt(record.get(1)); // 早班需要员工的数量
int middleShiftEmpNum = Integer.parseInt(record.get(2)); // 中班需要员工的数量
int nightShiftEmpNum = Integer.parseInt(record.get(3)); // 晚班需要员工的数量
//保存至二维数组,某天某班次需要的员工数量
demandOfEmps[day][0] = morningShiftEmpNum;
demandOfEmps[day][1] = middleShiftEmpNum;
demandOfEmps[day][2] = nightShiftEmpNum;
this.n_employees += morningShiftEmpNum + middleShiftEmpNum + nightShiftEmpNum;
}
this.n_employees = (int) Math.ceil((double) (this.n_employees) / 5) + 1;
} catch (IOException e) {
logger.info(e.getMessage());
}
return demandOfEmps;
}
public void orToolssolve() {
Loader.loadNativeLibraries();
// 声明模型
CpModel model = new CpModel();
// 初始化决策变量
Literal[][][] x = new Literal[n_employees][n_days][n_shifts];
for (int n : employees) {
for (int d : days) {
for (int s : shifts) {
x[n][d][s] = model.newBoolVar("shifts_n" + n + "d" + d + "s" + s);
}
}
}
// 约束:每天各个班次在岗的人数符合需求
for (int day = 0; day < days.length; day++) {
for (int shift = 0; shift < shifts.length; shift++) {
LinearExprBuilder numShiftsWorked = LinearExpr.newBuilder();
for (int empNum = 0; empNum < n_employees; empNum++) {
numShiftsWorked.add(x[empNum][day][shift]);
}
model.addLinearConstraint(numShiftsWorked, this.getDemandOfEmployees(day, shift), n_employees);
}
}
// 约束:每人每天最多只有一个班次
for (int n : employees) {
for (int d : days) {
List<Literal> work = new ArrayList<>();
for (int s : shifts) {
work.add(x[n][d][s]);
}
model.addAtMostOne(work);
}
}
// 约束:前一天是晚班的,第二天不能是早班
for (int e : employees) {
for (int d : days) {
List<Literal> work = new ArrayList<>();
work.add(x[e][d][2]);
if (d == 6) {
work.add(x[e][0][0]);
} else {
work.add(x[e][d + 1][0]);
}
model.addAtMostOne(work);
}
}
// 约束:一周工作工作时间不能超过5天
for (int empNum = 0; empNum < n_employees; empNum++) {
LinearExprBuilder expr = LinearExpr.newBuilder();
for (int day = 0; day < days.length; day++) {
for (int shift = 0; shift < shifts.length; shift++) {
expr.add(x[empNum][day][shift]);
}
}
model.addLinearConstraint(expr, 0, 5);
}
// 目标:雇佣的员工最少,即有排班的班次总数最少
LinearExprBuilder obj = LinearExpr.newBuilder();
for (int n : employees) {
for (int d : days) {
for (int s : shifts) {
obj.add(x[n][d][s]);
}
}
}
model.minimize(obj);
// 求解
CpSolver solver = new CpSolver();
CpSolverStatus status = solver.solve(model);
if (status == CpSolverStatus.OPTIMAL || status == CpSolverStatus.FEASIBLE) {
System.out.printf("%-8s", " ");
for (int d = 0; d < n_days; d++) {
System.out.printf("\t%d", d + 1);
}
System.out.println();
for (int e : employees) {
System.out.printf("employee%d\t", e + 1);
int shiftCount = 0;
for (int d : days) {
int shift = 0;
for (int s : shifts) {
if (solver.booleanValue(x[e][d][s])) {
shift = s + 1;
shiftCount += 1;
}
}
System.out.printf("%d\t", shift);
}
System.out.printf("员工%d这周上%d个班次", e + 1, shiftCount);
System.out.println();
}
} else {
System.out.printf("No optimal solution found !");
}
}
public static void main(String[] args) throws IOException {
EmployeeSchedulingProblem esp = new EmployeeSchedulingProblem();
esp.orToolssolve();
}A
}
每个员工在那一天上第几个班,本文or-tools求解结果,如图所示,如员工1-周1-上夜班,员工2-周1-不上班;0不上班、1早班、2晚班、3夜班。
1 2 3 4 5 6 7
employee1 3 0 0 3 0 3 2 员工1这周上4个班次
employee2 0 1 3 2 1 0 1 员工2这周上5个班次
employee3 2 0 0 3 0 1 1 员工3这周上4个班次
employee4 2 0 2 1 3 0 1 员工4这周上5个班次
employee5 0 1 2 2 2 2 0 员工5这周上5个班次
employee6 0 0 1 3 0 1 2 员工6这周上4个班次
employee7 2 2 1 2 2 0 0 员工7这周上5个班次
employee8 1 0 0 3 2 3 2 员工8这周上5个班次
employee9 0 1 0 3 0 2 2 员工9这周上4个班次
employee10 0 1 0 3 0 2 1 员工10这周上4个班次
employee11 0 2 2 3 2 0 1 员工11这周上5个班次
employee12 1 2 0 3 2 0 1 员工12这周上5个班次
employee13 2 1 0 3 0 2 3 员工13这周上5个班次
employee14 1 0 0 3 2 1 1 员工14这周上5个班次
employee15 0 2 1 3 0 2 0 员工15这周上4个班次
employee16 1 0 0 2 1 1 2 员工16这周上5个班次
employee17 2 0 1 1 1 1 0 员工17这周上5个班次
employee18 0 0 2 3 2 1 2 员工18这周上5个班次
employee19 0 3 2 1 3 2 0 员工19这周上5个班次
employee20 0 0 2 1 1 2 2 员工20这周上5个班次
employee21 1 1 0 2 1 1 0 员工21这周上5个班次