You are given a set of jobs, where each job is represented by a unique identifier, a positive integer duration, and a list of dependencies. Each dependency of a job specifies another job that must complete before the current job can start. Assume that there are unlimited processing resources so that any jobs whose dependencies have been satisfied can run concurrently.
Your task is to design and implement an algorithm that computes a schedule for these jobs that minimizes the overall completion time. The schedule should assign a start time and finish time to each job, ensuring that:
If it is impossible to schedule the jobs (for example, due to cyclic dependencies), your solution should detect this and report that scheduling is impossible.
Input:
Output:
Implement your solution in the programming language of your choice. The focus is on correctness and efficiency in computing the optimal schedule given the dependency constraints.
Remember, you are not required to handle resource limitations besides dependency management.