Leetcode 1882. Process Tasks Using Servers 双键/三键比较排序

class Solution {
public:
    struct Node1{
        int w, id, tm;
        bool operator< (const Node1& t) const{
            if (tm != t.tm) return tm > t.tm;
            if(w != t.w) return w > t.w;
            return id > t.id;
        }
    };
    
    struct Node2{
        int w, id, tm;
        bool operator< (const Node2& t) const{
            if(w != t.w) return w > t.w;
            return id > t.id;
        }
    };
    
    vector<int> assignTasks(vector<int>& servers, vector<int>& tasks) {
        priority_queue<Node1> heap1; // 非空闲 
        priority_queue<Node2> heap2; // 空闲
        
        for(int i = 0; i < servers.size(); i ++)
            heap1.push({servers[i], i, 0});
        vector<int> res;
        for(int i = 0; i < tasks.size(); i ++){
            while(heap1.size() && heap1.top().tm <= i){
                auto t = heap1.top();
                heap2.push({t.w, t.id, t.tm});
                heap1.pop();
            }
            if(heap2.size()){
                auto t = heap2.top();
                heap2.pop();
                res.push_back(t.id);
                heap1.push({t.w, t.id, i + tasks[i]});
            }else{ // 如果当前时刻没有空闲服务器,就从执行的服务器中找最先结束的,然后接着它自带的时间+task[i]即当前任务的时间
                auto t = heap1.top();
                heap1.pop();
                res.push_back(t.id);
                heap1.push({t.w, t.id, t.tm + tasks[i]});
            }
        }
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值