Skip to content

Latest commit

 

History

History

1882

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

You are given two 0-indexed integer arrays servers and tasks of lengths n​​​​​​ and m​​​​​​ respectively. servers[i] is the weight of the i​​​​​​th​​​​ server, and tasks[j] is the time needed to process the j​​​​​​th​​​​ task in seconds.

You are running a simulation system that will shut down after all tasks are processed. Each server can only process one task at a time. You will be able to process the jth task starting from the jth second beginning with the 0th task at second 0. To process task j, you assign it to the server with the smallest weight that is free, and in case of a tie, choose the server with the smallest index. If a free server gets assigned task j at second t,​​​​​​ it will be free again at the second t + tasks[j].

If there are no free servers, you must wait until one is free and execute the free tasks as soon as possible. If multiple tasks need to be assigned, assign them in order of increasing index.

You may assign multiple tasks at the same second if there are multiple free servers.

Build an array ans​​​​ of length m, where ans[j] is the index of the server the j​​​​​​th task will be assigned to.

Return the array ans​​​​.

 

Example 1:

Input: servers = [3,3,2], tasks = [1,2,3,2,1,2]
Output: [2,2,0,2,1,2]
Explanation: Events in chronological order go as follows:
- At second 0, task 0 is added and processed using server 2 until second 1.
- At second 1, server 2 becomes free. Task 1 is added and processed using server 2 until second 3.
- At second 2, task 2 is added and processed using server 0 until second 5.
- At second 3, server 2 becomes free. Task 3 is added and processed using server 2 until second 5.
- At second 4, task 4 is added and processed using server 1 until second 5.
- At second 5, all servers become free. Task 5 is added and processed using server 2 until second 7.

Example 2:

Input: servers = [5,1,4,3,2], tasks = [2,1,2,4,5,2,1]
Output: [1,4,1,4,1,3,2]
Explanation: Events in chronological order go as follows: 
- At second 0, task 0 is added and processed using server 1 until second 2.
- At second 1, task 1 is added and processed using server 4 until second 2.
- At second 2, servers 1 and 4 become free. Task 2 is added and processed using server 1 until second 4. 
- At second 3, task 3 is added and processed using server 4 until second 7.
- At second 4, server 1 becomes free. Task 4 is added and processed using server 1 until second 9. 
- At second 5, task 5 is added and processed using server 3 until second 7.
- At second 6, task 6 is added and processed using server 2 until second 7.

 

Constraints:

  • servers.length == n
  • tasks.length == m
  • 1 <= n, m <= 2 * 105
  • 1 <= servers[i], tasks[j] <= 2 * 105

Related Topics:
Heap

Solution 1.

// OJ: https://leetcode.com/problems/process-tasks-using-servers/
// Author: github.com/lzl124631x
// Time: O((S + T) * logS)
// Space: O(S + T)
class Solution {
public:
    vector<int> assignTasks(vector<int>& S, vector<int>& T) {
        vector<int> avail(S.size()), ans(T.size()); // `avail[i]` is the next available time of server i
        auto idleCmp = [&](int a, int b) { return S[a] != S[b] ? S[a] > S[b] : a > b; }; // the idle server with smallest weight and index is at the top
        auto busyCmp = [&](int a, int b) { return avail[a] > avail[b]; }; // The busy server with the smallest available time is at the top
        priority_queue<int, vector<int>, decltype(idleCmp)> idle(idleCmp);
        priority_queue<int, vector<int>, decltype(busyCmp)> busy(busyCmp);
        for (int i = 0; i < S.size(); ++i) idle.push(i);
        int time = 0;
        for (int i = 0; i < T.size(); ++i) {
            time = max(i, time); // the current time is at least `i`
            if (idle.empty()) time = avail[busy.top()]; // no idle servers, jump to the next available time
            while (busy.size() && avail[busy.top()] <= time) { // collect all the idle servers
                idle.push(busy.top());
                busy.pop();
            }
            int s = idle.top();
            idle.pop();
            ans[i] = s; // use server `s` for task `i`
            avail[s] = time + T[i]; // update available time of server `s` as current time + T[i]
            busy.push(s);
        }
        return ans;
    }
};