You are given a collection of tasks represented as nodes in a directed acyclic graph (DAG). Each task has:
In addition, you are provided with an integer k representing the number of available workers. Each worker can perform only one task at a time. Time advances in discrete units, and a task can only be started at the beginning of a time unit if all its prerequisites have been completed. Multiple tasks may be processed concurrently if enough workers are available.
Your goal is to determine the minimum total amount of time required to complete all tasks.
Input:
Output:
Write a program or function that, given the above input, computes and returns the minimum time needed to finish all tasks.
Example (illustrative, not exhaustive):
Consider the following tasks and k = 2 workers:
The solution should determine the minimal time required to execute tasks A, B, C, and D under the constraints described.
Note: The input format and output format can be designed as needed (e.g., command-line input, function parameters, etc.).