Capacity To Ship Packages Within D Days
medium
1. A conveyor belt has packages that must be shipped from one port to another within D days. 2. The ith package on the conveyor belt has a weight of weights[i]. Each day, we load the ship with packages on the conveyor belt (in the order given by weights). We may not load more weight than the maximum weight capacity of the ship. 3. Return the least weight capacity of the ship that will result in all the packages on the conveyor belt being shipped within D days.
Constraints
1 <= days <= weights.length <= 5 * 10^4 1 <= weights[i] <= 500
Format
Input
Input is managed for you
Output
Output is managed for you
Example
Sample Input
10
2 3 4 1 5 6 7 9 8 10
5
Sample Output
15