LeetCode 475. 供暖器
冬季已经来临。 你的任务是设计一个有固定加热半径的供暖器向所有房屋供暖。
现在,给出位于一条水平线上的房屋和供暖器的位置,找到可以覆盖所有房屋的最小加热半径。
所以,你的输入将会是房屋和供暖器的位置。你将输出供暖器的最小加热半径。
说明:
- 给出的房屋和供暖器的数目是非负数且不会超过 25000。
- 给出的房屋和供暖器的位置均是非负数且不会超过10^9。
- 只要房屋位于供暖器的半径内(包括在边缘上),它就可以得到供暖。
- 所有供暖器都遵循你的半径标准,加热的半径也一样。
示例 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;
}