LeetCode每日一题(2071. Maximum Number of Tasks You Can Assign)

You have n tasks and m workers. Each task has a strength requirement stored in a 0-indexed integer array tasks, with the ith task requiring tasks[i] strength to complete. The strength of each worker is stored in a 0-indexed integer array workers, with the jth worker having workers[j] strength. Each worker can only be assigned to a single task and must have a strength greater than or equal to the task’s strength requirement (i.e., workers[j] >= tasks[i]).

Additionally, you have pills magical pills that will increase a worker’s strength by strength. You can decide which workers receive the magical pills, however, you may only give each worker at most one magical pill.

Given the 0-indexed integer arrays tasks and workers and the integers pills and strength, return the maximum number of tasks that can be completed.

Example 1:

Input: tasks = [3,2,1], workers = [0,3,3], pills = 1, strength = 1
Output: 3

Explanation:
We can assign the magical pill and tasks as follows:

  • Give the magical pill to worker 0.
  • Assign worker 0 to task 2 (0 + 1 >= 1)
  • Assign worker 1 to task 1 (3 >= 2)
  • Assign worker 2 to task 0 (3 >= 3)

Example 2:

Input: tasks = [5,4], workers = [0,0,0], pills = 1, strength = 5
Output: 1

Explanation:
We can assign the magical pill and tasks as follows:

  • Give the magical pill to worker 0.
  • Assign worker 0 to task 0 (0 + 5 >= 5)

Example 3:

Input: tasks = [10,15,30], workers = [0,10,10,10,10], pills = 3, strength = 10
Output: 2

Explanation:
We can assign the magical pills and tasks as follows:

  • Give the magical pill to worker 0 and worker 1.
  • Assign worker 0 to task 0 (0 + 10 >= 10)
  • Assign worker 1 to task 1 (10 + 10 >= 15)
    The last pill is not given because it will not make any worker strong enough for the last task.

Constraints:

  • n == tasks.length
  • m == workers.length
  • 1 <= n, m <= 5 * 10^4
  • 0 <= pills <= m
  • 0 <= tasks[i], workers[j], strength <= 10^9

假设 tasks 和 workers 都是正序排列的, 且我们最多可以完成 k 个任务, 那我们一定完成的是 tasks[…k], 而这 k 个工人一定是 workers[workers.len() - k…]

而如果给出 k, 我们如何检测 tasks[…k]可以分配给 workers[workers.len() - k…]呢?

我们首先取出 tasks 中最大的, 即 tasks[k-1], 然后正序查找 workers 中是否有能不吃药就可以完成的, 如果有, 则将 worker 移除

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值