Problem Description
You are given a floating-point number hour
, representing the amount of time you have to reach the office. To commute to the office, you must take n
trains in sequential order. You are also given an integer array dist
of length n
, where dist[i]
describes the distance (in kilometers) of the i-th
train ride.
Each train can only depart at an integer hour, so you may need to wait in between each train ride. Return the minimum positive integer speed (in kilometers per hour) that all the trains must travel at for you to reach the office on time, or -1
if it is impossible to be on time.
Key Insights
- The speed must be a positive integer.
- The total time taken must not exceed the given
hour
. - If the calculated time for the last train exceeds the available hour, it's impossible to reach on time.
- A binary search can be used to efficiently find the minimum speed.
Space and Time Complexity
Time Complexity: O(n log(max_dist)) where n is the number of trains and max_dist is the maximum distance in the dist
array.
Space Complexity: O(1) since we are using a constant amount of space.
Solution
The solution involves using binary search to find the minimum speed required to arrive on time. We will define a helper function to calculate the total time taken by all trains at a given speed. The key points are:
- For each train ride, compute the time based on the current speed.
- If the time is not an integer, we need to round it up since we can only depart at integer hours.
- We perform binary search between 1 and a maximum speed (determined by the maximum distance divided by the minimum possible time).