#include<iostream>
#include<vector>
#include<set>
#include<iomanip>
#include<algorithm>
using namespace std;
struct x
{
int index;
int time;
};
struct cmp
{
bool operator()(const x& a, const x& b)const
{
if (a.time > b.time)
return true;
else if (a.time == b.time)
return a.index >= b.index;
else
return false;
}
};
const int handling_time = 17;
const vector<int> work = { 0,2,14,4,16,6,5,3 };
const int n = (int)work.size();
const int m = 3;
int Machine[m] = { 0 };
int main()
{
set<x, cmp> w;
vector<int>Rec[m];
for (int i = 1; i < n; i++)
w.insert({ i,work[i] });
set<x, cmp>::iterator t = w.begin();
int Count = n;
for (int i = 0; i < handling_time && Count>0; i++)
{
for (int j = 0; j < m && Count>0; j++)
{
if (((Machine[j] + t->time) > handling_time) || (Machine[j] > i))
continue;
else
{
Machine[j] += t->time;
Rec[j].push_back(t->index);
++t;
--Count;
}
}
i = *min_element(Machine, Machine + m);
}
for (int i = 0; i < m; i++)
{
cout << "第" << i + 1 << "个机器处理:";
for (int j = 0; j < (int)Rec[i].size(); j++)
cout << setw(3) << Rec[i][j];
cout << endl;
}
return 0;
}