1335. Minimum Difficulty of a Job Schedule
https://leetcode.com/problems/minimum-difficulty-of-a-job-schedule/
Last updated
Was this helpful?
https://leetcode.com/problems/minimum-difficulty-of-a-job-schedule/
Last updated
Was this helpful?
You want to schedule a list of jobs in d
days. Jobs are dependent (i.e To work on the i-th
job, you have to finish all the jobs j
where 0 <= j < i
).
You have to finish at least one task every day. The difficulty of a job schedule is the sum of difficulties of each day of the d
days. The difficulty of a day is the maximum difficulty of a job done in that day.
Given an array of integers jobDifficulty
and an integer d
. The difficulty of the i-th
job is jobDifficulty[i]
.
Return the minimum difficulty of a job schedule. If you cannot find a schedule for the jobs return -1.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Constraints:
1 <= jobDifficulty.length <= 300
0 <= jobDifficulty[i] <= 1000
1 <= d <= 10
N个工作,每个工作有难度值,让按序把它们安排在d天内且每天都必须安排工作,每天工作量按照工作难度值最大的算,整体工作量为把每天的工作量加起来,问满足以上条件后能安排的最少整体工作量是多少。因为要求按序安排工作,对于前i天和前j个工作,第j个工作必须安排在第i天,action为它和前面哪些工作组在一起分配到第i天,所以本质是个划分问题。遍历k,范围[i, j]因为前面i天每天都要有工作,i之前的不能分配到第i天。dp[i][j] 为前i天安排j个工作的最小整体工作量,等于min(dp[i][j], dp[i - 1][k - 1] + max(job[k, j])。
参考自这。