当前位置:   article > 正文

回溯法——最佳调度问题_n 个 任务分配给 n 个机器,每个机器恰好 1 个任务。第i个机器做第j个任务需要时间

n 个 任务分配给 n 个机器,每个机器恰好 1 个任务。第i个机器做第j个任务需要时间

一、题目要求

设有n个任务由k个可并行工作的机器来完成,完成任务i需要时间为。试设计一个算法找出完成这n个任务的最佳调度,使完成全部任务的时间最早。

、算法设计与分析:

该算法可抽象为子集树回溯算法,针对特定的任务数和机器数定义解空间,对于n个任务和k个机器,

解编码:(X1,X2,。。。,Xn),Xi表示给任务i分配的机器编号;

解空间:{(X1,X2,。。。,Xn)| Xi属于S,i=1到n},S={1,2,。。。,k}

三、算法实现

  1. #define NUM_TASK 10
  2. #define NUM_MAC 3
  3. #include <iostream>
  4. #include <climits>
  5. using namespace std;
  6. void output(int x[]);
  7. void BackTrack(int task);
  8. int getTime(int time_mac[]);
  9. void output_assign(int best_x[]);
  10. //所有数组下标从1开始
  11. int x[NUM_TASK + 1];//x[task]表示给任务task分配机器x[task]
  12. int best_x[NUM_TASK+1];//存储最优分配方案
  13. int min_t=INT_MAX;//执行任务所需的最小时间
  14. int t[NUM_TASK + 1] = { 0,1,7,4,0,9,4,8,8,2,4 };//每个任务所需时间
  15. //int t[NUM_TASK + 1] = { 0,1,7,4 };//每个任务所需时间
  16. int time_mac[NUM_MAC + 1] = {0};//每个机器运行结束的时间
  17. int main() {
  18. BackTrack(1);
  19. cout << "各个任务执行时间依次为:" << endl;
  20. for (int i = 1; i <= NUM_TASK; i++) {
  21. cout << t[i] << " ";
  22. }
  23. cout << endl;
  24. cout << "所需要的最小时间为:"<<min_t << endl;
  25. //output(best_x);
  26. output_assign(best_x);
  27. return 0;
  28. }
  29. void BackTrack(int task) {
  30. if (task > NUM_TASK) {
  31. int cur_time = getTime(time_mac);//当前已分配任务的完成时间
  32. /*输出所有分配情况,以及对应的时间*/
  33. //output(x);
  34. //cout << "time=" << cur_time <<endl;
  35. if (cur_time < min_t) { //剪枝
  36. min_t = cur_time;
  37. for (int i = 1; i <=NUM_TASK; i++) {
  38. best_x[i] = x[i];
  39. }
  40. }
  41. }
  42. else{
  43. for (int i = 1; i <= NUM_MAC; i++) {
  44. x[task] = i;
  45. time_mac[i] += t[task];
  46. if(time_mac[i]<min_t)
  47. BackTrack(task+1);
  48. time_mac[i] -= t[task];
  49. }
  50. }
  51. }
  52. void output(int x[]) {
  53. for (int i = 1; i <= NUM_TASK; i++) {
  54. cout << x[i]<< " ";
  55. }
  56. }
  57. int getTime(int time_mac[]) {
  58. int max_time=time_mac[1];
  59. for (int i = 2; i <= NUM_MAC; i++) {
  60. if (time_mac[i] > max_time) {
  61. max_time = time_mac[i];
  62. }
  63. }
  64. return max_time;
  65. }
  66. void output_assign(int best_x[]) {
  67. for (int i = 1; i <= NUM_TASK; i++) {
  68. cout << "任务" << i << "分配给机器" << best_x[i] << endl;
  69. }
  70. }

四、结果分析和总结

3.1 任务数为10,机器数为5,运行结果如下:

3.2 任务数为10,机器数为3,运行结果如下:


3.3 分析总结

本实验采用子集树回归算法完成最佳调度问题,在不剪枝的情况下,由该问题解空间可知该算法时间复杂度为n!,当任务数为10的时候需要进行3628800次搜索,效率极低,采用剪枝操作后算法效率得到明显提升。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/284727
推荐阅读
相关标签
  

闽ICP备14008679号