2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
find_radius.rs 661 Bytes
一键复制 编辑 原始数据 按行查看 历史
royce li 提交于 2022-03-16 21:04 . 2022/03/16
struct Solution {}
impl Solution {
pub fn find_radius(houses: Vec<i32>, heaters: Vec<i32>) -> i32 {
let mut houses = houses;
let mut heaters = heaters;
houses.sort();
heaters.sort();
let mut s = heaters.binary_search(&houses[0]).unwrap_or_else(|x| x);
let l = heaters.len();
let mut ret = 0;
for h in houses {
while s + 1 < l && h >= heaters[s + 1] {
s += 1;
}
if h <= heaters[0] {
ret = ret.max(heaters[0] - h);
} else if s == l - 1 {
ret = ret.max(h - heaters[l - 1])
} else {
ret = ret.max((h - heaters[s]).min(heaters[s + 1] - h));
}
}
ret
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助