当前位置:网站首页>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
}
}
边栏推荐
- 端午节快乐Wish Dragon Boat Festival is happy
- 我的创作纪念日
- Leetcode daily question (971. flip binary tree to match preorder traversal)
- In English translation of papers, how to do a good translation?
- 删除外部表源数据
- [Yu Yue education] flower cultivation reference materials of Weifang Vocational College
- Grouping convolution and DW convolution, residuals and inverted residuals, bottleneck and linearbottleneck
- 翻译影视剧字幕,这些特点务必要了解
- CS通过(CDN+证书)powershell上线详细版
- Fledgling Xiao Li's 103rd blog CC2530 resource introduction
猜你喜欢
Address bar parameter transmission of list page based on jeecg-boot
How effective is the Chinese-English translation of international economic and trade contracts
论文摘要翻译,多语言纯人工翻译
论文翻译英译中,怎样做翻译效果好?
[English] Grammar remodeling: the core framework of English Learning -- English rabbit learning notes (1)
MySQL is sorted alphabetically
What are the commonly used English words and sentences about COVID-19?
記一個基於JEECG-BOOT的比較複雜的增删改功能的實現
Classification des verbes reconstruits grammaticalement - - English Rabbit Learning notes (2)
[English] Verb Classification of grammatical reconstruction -- English rabbit learning notes (2)
随机推荐
LeetCode 729. My schedule I
How to translate professional papers and write English abstracts better
钓鱼&文件名反转&office远程模板
E-book CHM online CS
Convert the array selected by El tree into an array object
How to translate biomedical instructions in English
Cannot create poolableconnectionfactory (could not create connection to database server. error
基於JEECG-BOOT的list頁面的地址欄參數傳遞
Machine learning plant leaf recognition
MySQL high frequency interview 20 questions, necessary (important)
Drug disease association prediction based on multi-scale heterogeneous network topology information and multiple attributes
国际经贸合同翻译 中译英怎样效果好
How much is it to translate Chinese into English for one minute?
My creation anniversary
基于购买行为数据对超市顾客进行市场细分(RFM模型)
一文读懂简单查询代价估算
Office doc add in - Online CS
[Yu Yue education] Dunhuang Literature and art reference materials of Zhejiang Normal University
Simple query cost estimation
字幕翻译中翻英一分钟多少钱?