Welcome to Subscribe On Youtube
3476. Maximize Profit from Task Assignment ๐
Description
You are given an integer array workers
, where workers[i]
represents the skill level of the ith
worker. You are also given a 2D integer array tasks
, where:
tasks[i][0]
represents the skill requirement needed to complete the task.tasks[i][1]
represents the profit earned from completing the task.
Each worker can complete at most one task, and they can only take a task if their skill level is equal to the task's skill requirement. An additional worker joins today who can take up any task, regardless of the skill requirement.
Return the maximum total profit that can be earned by optimally assigning the tasks to the workers.
Example 1:
Input: workers = [1,2,3,4,5], tasks = [[1,100],[2,400],[3,100],[3,400]]
Output: 1000
Explanation:
- Worker 0 completes task 0.
- Worker 1 completes task 1.
- Worker 2 completes task 3.
- The additional worker completes task 2.
Example 2:
Input: workers = [10,10000,100000000], tasks = [[1,100]]
Output: 100
Explanation:
Since no worker matches the skill requirement, only the additional worker can complete task 0.
Example 3:
Input: workers = [7], tasks = [[3,3],[3,3]]
Output: 3
Explanation:
The additional worker completes task 1. Worker 0 cannot work since no task has a skill requirement of 7.
Constraints:
1 <= workers.length <= 105
1 <= workers[i] <= 109
1 <= tasks.length <= 105
tasks[i].length == 2
1 <= tasks[i][0], tasks[i][1] <= 109
Solutions
Solution 1: Hash Table + Priority Queue
Since each task can only be completed by a worker with a specific skill, we can group the tasks by skill requirements and store them in a hash table
Then, we iterate through the workers. For each worker, we find the corresponding priority queue in the hash table
Finally, we add the maximum profit from the remaining tasks to the result.
The time complexity is
-
class Solution { public long maxProfit(int[] workers, int[][] tasks) { Map<Integer, PriorityQueue<Integer>> d = new HashMap<>(); for (var t : tasks) { int skill = t[0], profit = t[1]; d.computeIfAbsent(skill, k -> new PriorityQueue<>((a, b) -> b - a)).offer(profit); } long ans = 0; for (int skill : workers) { if (d.containsKey(skill)) { var pq = d.get(skill); ans += pq.poll(); if (pq.isEmpty()) { d.remove(skill); } } } int mx = 0; for (var pq : d.values()) { mx = Math.max(mx, pq.peek()); } ans += mx; return ans; } }
-
class Solution { public: long long maxProfit(vector<int>& workers, vector<vector<int>>& tasks) { unordered_map<int, priority_queue<int>> d; for (const auto& t : tasks) { d[t[0]].push(t[1]); } long long ans = 0; for (int skill : workers) { if (d.contains(skill)) { auto& pq = d[skill]; ans += pq.top(); pq.pop(); if (pq.empty()) { d.erase(skill); } } } int mx = 0; for (const auto& [_, pq] : d) { mx = max(mx, pq.top()); } ans += mx; return ans; } };
-
class Solution: def maxProfit(self, workers: List[int], tasks: List[List[int]]) -> int: d = defaultdict(SortedList) for skill, profit in tasks: d[skill].add(profit) ans = 0 for skill in workers: if not d[skill]: continue ans += d[skill].pop() mx = 0 for ls in d.values(): if ls: mx = max(mx, ls[-1]) ans += mx return ans
-
func maxProfit(workers []int, tasks [][]int) (ans int64) { d := make(map[int]*hp) for _, t := range tasks { skill, profit := t[0], t[1] if _, ok := d[skill]; !ok { d[skill] = &hp{} } d[skill].push(profit) } for _, skill := range workers { if _, ok := d[skill]; !ok { continue } ans += int64(d[skill].pop()) if d[skill].Len() == 0 { delete(d, skill) } } mx := 0 for _, pq := range d { for pq.Len() > 0 { mx = max(mx, pq.pop()) } } ans += int64(mx) return } type hp struct{ sort.IntSlice } func (h hp) Less(i, j int) bool { return h.IntSlice[i] > h.IntSlice[j] } func (h *hp) Push(v any) { h.IntSlice = append(h.IntSlice, v.(int)) } func (h *hp) Pop() any { a := h.IntSlice v := a[len(a)-1] h.IntSlice = a[:len(a)-1] return v } func (h *hp) push(v int) { heap.Push(h, v) } func (h *hp) pop() int { return heap.Pop(h).(int) }
-
function maxProfit(workers: number[], tasks: number[][]): number { const d = new Map(); for (const [skill, profit] of tasks) { if (!d.has(skill)) { d.set(skill, new MaxPriorityQueue()); } d.get(skill).enqueue(profit); } let ans = 0; for (const skill of workers) { const pq = d.get(skill); if (pq) { ans += pq.dequeue(); if (pq.size() === 0) { d.delete(skill); } } } let mx = 0; for (const pq of d.values()) { mx = Math.max(mx, pq.front()); } ans += mx; return ans; }