• LeetCode每日一题(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.

    Constraints:

    • n == dist.length
    • 1 <= n <= 105
    • 1 <= dist[i] <= 105
    • 1 <= hour <= 109
    • There will be at most two digits after the decimal point in hour.

    二分查找, 多余的不说了, 最小值肯定是 1, 最大值题目里给了是 10 的七次方


    
    impl Solution {
        pub fn min_speed_on_time(dist: Vec<i32>, hour: f64) -> i32 {
            let mut min = 1;
            let mut max = 10i32.pow(7) + 1;
            let mut ans = -1;
            while min < max {
                let mid = (min + max) / 2;
                let mut total = 0.0;
                for i in 0..dist.len() - 1 {
                    total += (dist[i] as f64 / mid as f64).ceil() as f64;
                }
                total += *dist.last().unwrap() as f64 / mid as f64;
                if total > hour {
                    min = mid + 1;
                    continue;
                }
                max = mid;
                ans = mid;
            }
            ans
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
  • 相关阅读:
    软考-软件项目活动图详解
    五种分布式事务解决方案(图文总结)
    【面试】找到一个数组中超过一半的数——摩尔投票算法
    潜力无限:深入探索 gRPC 的奇妙世界
    智慧城市数字孪生技术方案,建设可视化系统
    单向环形链表构建(思路分析) [Java][数据结构]
    SSM+JSP实现《吃货联盟外卖系统》
    网络基础2(1)
    关于入门深度学习mnist数据集前向计算的记录
    力扣(LeetCode)809. 情感丰富的文字(C++)
  • 原文地址:https://blog.csdn.net/wangjun861205/article/details/125596995