LeetCode 475. 供暖器

94 篇文章 0 订阅
本文详细解析了LeetCode上的经典问题——供暖器,通过两段示例代码展示了如何寻找覆盖所有房屋的最小加热半径。首先介绍了问题背景和目标,随后通过遍历房屋和二分查找的方式,高效地找到了满足条件的最小加热半径。
摘要由CSDN通过智能技术生成

LeetCode 475. 供暖器

冬季已经来临。 你的任务是设计一个有固定加热半径的供暖器向所有房屋供暖。

现在,给出位于一条水平线上的房屋和供暖器的位置,找到可以覆盖所有房屋的最小加热半径。

所以,你的输入将会是房屋和供暖器的位置。你将输出供暖器的最小加热半径。

说明:

  1. 给出的房屋和供暖器的数目是非负数且不会超过 25000。
  2. 给出的房屋和供暖器的位置均是非负数且不会超过10^9。
  3. 只要房屋位于供暖器的半径内(包括在边缘上),它就可以得到供暖。
  4. 所有供暖器都遵循你的半径标准,加热的半径也一样。

示例 1:

输入: [1,2,3],[2]
输出: 1
解释: 仅在位置2上有一个供暖器。如果我们将加热半径设为1,那么所有房屋就都能得到供暖。

示例 2:

输入: [1,2,3,4],[1,4]
输出: 1
解释: 在位置1, 4上有两个供暖器。我们需要将加热半径设为1,这样所有房屋就都能得到供暖。

遍历房子,寻找前后供暖器的位置,要距离最小的,更新答案

#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
static const auto io_sync_off = []() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    return nullptr;
}();

const int inf = 0x3f3f3f3f;
int main()
{
    int n, m;
    cin >> n >> m;
    vector<int> hous(n), heat(m);
    for (int i = 0; i < n; ++i)
        cin >> hous[i];
    for (int i = 0; i < m; ++i)
        cin >> heat[i];

    sort(heat.begin(), heat.end());
    int ans = 0;
    for (int hou : hous)
    {
        int cur = inf;
        // 当前房子后面跟的加热器位置
        auto pos = lower_bound(heat.begin(), heat.end(), hou);
        if (pos != heat.end())
            cur = *pos - hou;
        //前面的加热器位置
        if (pos != heat.begin())
        {
            auto pre = pos - 1;
            cur = min(cur, hou - *pre);
        }
        ans = max(ans, cur);
    }
    cout << ans;
    return 0;
}

19/4/14更新
二分散热器的半径,判断是否满足所有的房子

#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
static const auto io_sync_off = []() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    return nullptr;
}();

const int maxn = 25005;
int n, m, house[maxn], heaters[maxn];

bool check(int r)
{
    for (int i = 0, j = 0; i < n; ++i)
    {
        while (j < m && abs(heaters[j] - house[i]) > r)//当前散热器不满足,换下一个对比
            ++j;
        if (j == m)//所有散热器都不满足,该半径不正确
            return false;
    }
    return true;
}

int main()
{
    cin >> n >> m;
    for (int i = 0; i < n; ++i)
        cin >> house[i];
    for (int i = 0; i < m; ++i)
        cin >> heaters[i];
    sort(house, house + n);
    sort(heaters, heaters + m);

    int l = 0, r = max(house[n - 1], heaters[m - 1]);
    while (l < r)
    {
        int mid = l + (r - l) / 2;
        if (check(mid))
            r = mid;
        else
            l = mid + 1;
    }
    cout << l;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值