其他分享
首页 > 其他分享> > 2022.3.11

2022.3.11

作者:互联网

蓝书

AcWing 112. 雷达设备

思路:对于确定每座岛屿在x轴上能被雷达监视的左右区间,然后初始化位置pos,每次判断一下,如果pos小于当前岛屿的左区间,那么需要新加一个雷达,并更新pos为该岛屿的又区间,如果pos大于的话说明可以管辖,我们让pos=min(r,pos)。目的是将i的位置尽量往后放。
注意左右区间得是double才行,不然会cnt数量最后会变多。

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
using namespace std;
typedef long long ll;
typedef pair<double,double> pdd;
const int N=1e5+10,INF=1e8;
pdd land[N];
int main()
{
    int n;
    double d;
    scanf("%d%lf", &n, &d);
    for (int i = 1; i <= n;i++)
    {
        double x, y;
        scanf("%lf%lf", &x, &y);
        if(y>d)
        {
            printf("-1");
            return 0;
        }
        land[i].first = x - sqrt((d * d) - (y * y));
        land[i].second= x + sqrt((d * d) - (y * y));
    }
    sort(land + 1, land + 1 + n);
    double pos = -INF;
    int cnt = 0;
    for (int i = 1; i <= n;i++)
    {
        double l = land[i].first, r = land[i].second;
        if(l>pos+1e-6)
        {
            cnt++;
            pos = r;
        }
        else
            pos = min(r, pos);
    }
    printf("%d\n", cnt);
    return 0;
}

标签:11,cnt,land,int,double,pos,include,2022.3
来源: https://www.cnblogs.com/menitrust/p/15993151.html