Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ED-002. Maximum CPU Load #270

Closed
hamidgasmi opened this issue Aug 16, 2020 · 0 comments
Closed

ED-002. Maximum CPU Load #270

hamidgasmi opened this issue Aug 16, 2020 · 0 comments

Comments

@hamidgasmi
Copy link
Owner

We are given a list of Jobs.
Each job has a Start time, an End time, and a CPU load when it is running. Our goal is to find the maximum CPU load at any time if all the jobs are running on the same machine.

Example 1:

Jobs: [[1,4,3], [2,5,4], [7,9,6]]
Output: 7
Explanation: Since [1,4,3] and [2,5,4] overlap, their max CPU load (3+4=7) will be when both the 
jobs are running at the same time i.e., during the time interval (2,4).

Example 2:

Jobs: [[6,7,10], [2,4,11], [8,12,15]]
Output: 15
Explanation: None of the jobs overlap, therefore we will take the maximum load of any job which is 15.

Example 3:

Jobs: [[1,4,2], [2,4,1], [3,6,5]]
Output: 8
Explanation: Maximum CPU load will be 8 as all jobs overlap during the time interval [3,4].
@hamidgasmi hamidgasmi self-assigned this Aug 16, 2020
@hamidgasmi hamidgasmi changed the title Maximum CPU Load EDU-Maximum CPU Load Aug 16, 2020
@hamidgasmi hamidgasmi changed the title EDU-Maximum CPU Load EDU-2. Maximum CPU Load Aug 16, 2020
@hamidgasmi hamidgasmi changed the title EDU-2. Maximum CPU Load EDU-1. Maximum CPU Load Aug 16, 2020
@hamidgasmi hamidgasmi changed the title EDU-1. Maximum CPU Load EDU-002. Maximum CPU Load Aug 16, 2020
@hamidgasmi hamidgasmi changed the title EDU-002. Maximum CPU Load ED-002. Maximum CPU Load Aug 16, 2020
hamidgasmi pushed a commit that referenced this issue Aug 16, 2020
@hamidgasmi hamidgasmi added medium and removed hard labels Aug 16, 2020
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

1 participant