记录编号 599568 评测结果 AWWAAAWWWW
题目名称 [POJ 1328]监控安装 最终得分 40
用户昵称 Gravatar秋_Water 是否通过 未通过
代码语言 C++ 运行时间 0.037 s
提交时间 2025-03-23 17:10:05 内存使用 3.52 MiB
显示代码纯文本
#include <bits/stdc++.h>
    using namespace std;
    struct node{
        double x,y;
    }a[1008];
    bool cmp(node a,node b){
        return a.y<b.y;
    }
    int n,r,ans=1;
    bool bj=0;
int main(){
    freopen("monitor.in","r",stdin);
    freopen("monitor.out","w",stdout);     
    cin>>n>>r;
    double x,y;
    for(int i=1;i<=n;i++){
        cin>>x>>y;
        if(y>r){
            bj=1;
        }
        a[i].x=1.0*x-sqrt(1.0*r*r-a[i].y*a[i].y);
        a[i].y=1.0*x+sqrt(1.0*r*r-a[i].y*a[i].y);
    }
    if(bj==1){
        cout<<-1;
        return 0;
    }
    sort(a+1,a+n+1,cmp);
    double pos=a[1].y;
    for(int i=2;i<=n;i++){
        if(a[i].x>pos){
            pos=a[i].y;
            ans++;
        }
        else{
            pos=min(pos,a[i].y);
        }
    }
    cout<<ans;
    
    return 0;
}