1870. Minimum Speed to Arrive on Time

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 ith train ride.

Each train can only depart at an integer hour, so you may need to wait in between each train ride.

For example, if the 1st train ride takes 1.5 hours, you must wait for an additional 0.5 hours before you can depart on the 2nd train ride at the 2 hour mark.

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.

Tests are generated such that the answer will not exceed 107 and hour will have at most two digits after the decimal point.


      Example 1:
      Input: dist = [1,3,2], hour = 6
      Output: 1
      Explanation: At speed 1:
      - The first train ride takes 1/1 = 1 hour.
      - Since we are already at an integer hour, we depart immediately at the 1 hour mark. The second train takes 3/1 = 3 hours.
      - Since we are already at an integer hour, we depart immediately at the 4 hour mark. The third train takes 2/1 = 2 hours.
      - You will arrive at exactly the 6 hour mark.

      Example 2:
      Input: dist = [1,3,2], hour = 2.7
      Output: 3
      Explanation: At speed 3:
      - The first train ride takes 1/3 = 0.33333 hours.
      - Since we are not at an integer hour, we wait until the 1 hour mark to depart. The second train ride takes 3/3 = 1 hour.
      - Since we are already at an integer hour, we depart immediately at the 2 hour mark. The third train takes 2/3 = 0.66667 hours.
      - You will arrive at the 2.66667 hour mark.
      
      Example 3:
      Input: dist = [1,3,2], hour = 1.9
      Output: -1
      Explanation: It is impossible because the earliest the third train can depart is at the 2 hour mark.
    

Approach-1, Linear Search. TLE

Logic

Code


        class Solution {
        public:
            int round_to_next_int(double val) {
                if (val - int(val))
                    return val+1;
                return val;
            }
            
            int minSpeedOnTime(vector& dist, double hour) {
                // Linear Search 
                double speed = 1, calc_time = 0;
                do {
                    calc_time = 0;
                    for (int i=0;i hour)
                        speed++;
                } while (calc_time > hour);
                return speed;
            }
        };
    

Binary Search. O(log(10000000))=7

1. {Intution} We know time = distance/speed.


            Expected time to complete = 2.7
            Speed       -----------dist------------      Time
                        1            3        2
    Taking speed=1      1/1=1      3/1=3      2/1=2      1+3+2=6        //Taking more time than expected. Increase speed
    Taking speed=2      1/2=.5     3/2=1.5    2/2=1
                        rounded=1    2          1      1+2+1=4        //Taking more time than expected. Increase speed
    Taking speed=3      1/3=.33      3/3=1    2/3=.67
                        rounded=1      1          .67  1+1+.67=2.67   //Taking less time than expected. This is answer
        

2. Perform binary search between (1, 107) taking these as speeds.

Code

CPP98


            class Solution {
                public:
                    int round_to_next_int(double val) {
                        if (val - int(val))
                            return val+1;
                        return val;
                    }
                
                    int minSpeedOnTime(vector& dist, double hour) {
                        // Binary Search 
                        double min_speed = 1, max_speed = pow(10,7);
                        int out = -1;
                
                        while (min_speed <= max_speed) {
                            double calc_time = 0;
                            int mid_speed = min_speed + (max_speed - min_speed) / 2;
                
                            for (int i=0;i hour) {
                                // We are taking more time than required. Incresed speed
                                min_speed = mid_speed + 1;
                            } else {
                                // reduce speed
                                out = mid_speed;                
                                max_speed = mid_speed - 1;
                            }
                        }
                        // We will get the answer when min_speed >= max_speed.
                        return out;
                    }
                };
        

Python


                import math
                class Solution:
                    def __init__(self):
                        self.min_speed = 1
                        self.max_speed = 10000000
                        self.out = -1
                
                    def minSpeedOnTime(self, dist: List[int], hour: float) -> int:
                        # Binary Search
                
                        while self.min_speed <= self.max_speed:
                            calc_time = 0.0
                
                        # // is floor division. 3//2 = 1
                        # / is division.        3/2  = 1.5
                            mid_speed = self.min_speed + (self.max_speed - self.min_speed) // 2
                
                            for i in range(0, len(dist)-1):
                                calc_time += math.ceil(dist[i] / mid_speed)		#math.ceil() to round it up to the next integer.
                
                            # Keep decimal part and add to calc_time
                            calc_time += dist[-1] / mid_speed
                
                            if calc_time > hour:
                                # We are taking more time than required. Increase speed
                                self.min_speed = mid_speed + 1
                            else:
                                # reduce speed
                                self.out = mid_speed
                                self.max_speed = mid_speed - 1
                
                        return int(self.out)