最佳调度问题

#include <iostream>
#include <fstream>
#include <queue>
#include <cmath>
using namespace std;

const int INF = 100000;
const int MAX = 50; 
int n, k;         //任务数,机器数
int time[MAX];    //完成任务需要时间 

class Node
{
public:
    int dep;      //当前层
    int time;     //完成当前任务的时间
    int *machine; //各机器完成任务后的时间

    Node(int d, int t)
    {
        machine = new int[k+1];
        dep = d;
        time = t;
    }

    int getTime() //计算完成当前任务需要的时间
    {
        int t = machine[1];
        for(int i=2; i<=k; i++)
            if(t < machine[i])
                t = machine[i];
        return t;
    }

    //完成任务时间小的先出队列
    bool operator < (const Node &node) const
    {
        return time >= node.time;
    }
};

int search()
{
    priority_queue<Node> q;
    Node enode(0, 0);
    for(int j=1; j<=k; j++)
        enode.machine[j] = 0;
    int best = INF;
    while(true)
    {
        if(enode.dep == n) 
        {
            if(enode.time < best)
            {
                best = enode.time;
                break;
            }
        }
        else
        {
            for(int i=1; i<=k; i++)
            {
                Node now(enode.dep+1, 0);
                copy(enode.machine, enode.machine+k+1, now.machine);
                now.machine[i] += time[now.dep]; 
                now.time = now.getTime();
                if(now.time < best)
                    q.push(now);
            }
        }
        if(q.empty())
            break;
        else
        {
            enode = q.top();    cout << enode.dep << " " << enode.time << endl;
            q.pop(); 
        }
    }
    return best;
}

int main()
{
    ifstream fin("最佳调度.txt");
    cout << "输入任务数:";
    fin >> n;   cout << n << endl;
    cout << "输入机器数:";
    fin >> k;   cout << k << endl;
    cout << "输入完成任务需要的时间:\n";
    for(int i=1; i<=n; i++)
    {
        fin >> time[i];
        cout << time[i] << " ";
    }

    cout << "\n完成全部任务最早时间为:" << search() << endl;
    cout << endl;
    cout << endl;
    fin.close();
    return 0;
}

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值