Tap here to switch tabs
Problem
Submissions
Solution

Solution: Maximum Profit in Job Scheduling

Statement

Naive approach

In the naive approach, we systematically explore all possible combinations of scheduling jobs to find the one that provides us the maximum profit. For each of the nn jobs, there are two choices:

  • Schedule the job.

  • Do not schedule the job.

This results in ...

Tap here to switch tabs
Problem
Submissions
Solution

Solution: Maximum Profit in Job Scheduling

Statement

Naive approach

In the naive approach, we systematically explore all possible combinations of scheduling jobs to find the one that provides us the maximum profit. For each of the nn jobs, there are two choices:

  • Schedule the job.

  • Do not schedule the job.

This results in ...