Problem Description
You are given an integer array jobs, where jobs[i] is the amount of time it takes to complete the ith job. There are k workers that you can assign jobs to. Each job should be assigned to exactly one worker. The working time of a worker is the sum of the time it takes to complete all jobs assigned to them. Your goal is to devise an optimal assignment such that the maximum working time of any worker is minimized. Return the minimum possible maximum working time of any assignment.
Key Insights
- Each job must be assigned to exactly one worker.
- The objective is to minimize the maximum working time among all workers.
- The problem can be approached using backtracking or dynamic programming due to the constraints.
- We can use a bitmask to represent job assignments to workers, making it easier to evaluate different combinations.
Space and Time Complexity
Time Complexity: O(k * 2^n), where n is the number of jobs and k is the number of workers. Each state can be represented in a bitmask of length n, and we evaluate k workers for each possible job assignment. Space Complexity: O(k * 2^n) for storing the state of job assignments and their corresponding maximum working time.
Solution
The problem can be solved using a backtracking approach combined with a bitmask to efficiently represent job assignments. We will maintain an array to track the current workload of each worker. For each job, we will try to assign it to each worker and recursively compute the maximum workload. The goal is to keep track of the minimum possible maximum workload encountered during these assignments.