630. Course Schedule III
There are n
different online courses numbered from 1
to n
. Each course has some duration(course length) t
and closed on dth
day. A course should be taken continuously for t
days and must be finished before or on the dth
day. You will start at the 1st
day.
Given n
online courses represented by pairs (t,d)
, your task is to find the maximal number of courses that can be taken.
Example:
Note:
The integer 1 <= d, t, n <= 10,000.
You can't take two courses simultaneously.
Last updated
Was this helpful?