当前位置:网站首页>Leetcode daily question (1870. minimum speed to arrive on time)
Leetcode daily question (1870. minimum speed to arrive on time)
2022-07-06 06:41:00 【wangjun861205】
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.
Two points search , Don't say anything superfluous , The minimum value must be 1, The maximum value given in the title is 10 The seventh power of
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
}
}
边栏推荐
- 关于新冠疫情,常用的英文单词、语句有哪些?
- Biomedical localization translation services
- Summary of the post of "Web Test Engineer"
- 论文摘要翻译,多语言纯人工翻译
- Financial German translation, a professional translation company in Beijing
- 女生学软件测试难不难 入门门槛低,学起来还是比较简单的
- Biomedical English contract translation, characteristics of Vocabulary Translation
- [English] Verb Classification of grammatical reconstruction -- English rabbit learning notes (2)
- 翻译公司证件盖章的价格是多少
- 今日夏至 Today‘s summer solstice
猜你喜欢

How effective is the Chinese-English translation of international economic and trade contracts

Postman core function analysis - parameterization and test report

商标翻译有什么特点,如何翻译?

Black cat takes you to learn EMMC Protocol Part 10: EMMC read and write operation details (read & write)

Luogu p2089 roast chicken

Error getting a new connection Cause: org. apache. commons. dbcp. SQLNestedException

JDBC requset corresponding content and function introduction

Biomedical localization translation services

字幕翻译中翻英一分钟多少钱?
![[web security] nodejs prototype chain pollution analysis](/img/b6/8eddc9cbe343f2439da92bf342b0dc.jpg)
[web security] nodejs prototype chain pollution analysis
随机推荐
Traffic encryption of red blue confrontation (OpenSSL encrypted transmission, MSF traffic encryption, CS modifying profile for traffic encryption)
英语论文翻译成中文字数变化
org. activiti. bpmn. exceptions. XMLException: cvc-complex-type. 2.4. a: Invalid content beginning with element 'outgoing' was found
Past and present lives of QR code and sorting out six test points
我的创作纪念日
基於JEECG-BOOT的list頁面的地址欄參數傳遞
Basic knowledge of MySQL
Erreur de type résolue avec succès: type de données « catégorie» non sous - jacente
Wish Dragon Boat Festival is happy
机器学习植物叶片识别
(practice C language every day) reverse linked list II
[mqtt from getting started to improving series | 01] quickly build an mqtt test environment from 0 to 1
Data type of MySQL
Address bar parameter transmission of list page based on jeecg-boot
In English translation of papers, how to do a good translation?
Making interactive page of "left tree and right table" based on jeecg-boot
SSO流程分析
SQL Server Manager studio (SSMS) installation tutorial
国际经贸合同翻译 中译英怎样效果好
Machine learning plant leaf recognition