题解 | #小H的小猫#

小H的小猫

https://ac.nowcoder.com/acm/contest/11234/A

要把(0,0)围在墙角,很容易想到至少要有两个点分别在x轴和y轴上的点,这里对所给的n个点按照x坐标和y坐标排序一遍,然后找到两个在坐标轴上的点即可求出答案

#include <iostream>
#include <vector>
#include <algorithm>
#include <cstdio>
#include <cmath>

using namespace std;

typedef pair<double, double> PDD;

const int N = 1000010;

int n;
PDD psx[N], psy[N];

int main(void)
{
    scanf("%d", &n);
    for(int i = 0; i < n; i++)
    {
        double x, y;
        scanf("%lf%lf", &x, &y);
        psx[i] = {x, y};
        psy[i] = {y, x};
    }
    PDD ans_y = {0.0, 0.0};
    PDD ans_x = {0.0, 0.0};
    sort(psx, psx + n);
    sort(psy, psy + n);


    //找x轴上的点
    for(int i = 0; i < n ;i++)
    {
        if(psx[i].first != 0.0 && psx[i].second == 0.0)
        {
            ans_x = psx[i];
            break;
        }
    }

    //找y轴上的点
    for(int i = 0; i < n; i++)
    {
        if(psy[i].first != 0.0 && psy[i].second == 0.0)
        {
            ans_y = psy[i];
            break;
        }
    }

    if(ans_x.first != 0.0 && ans_y.first != 0.0)
    {
        double x = ans_x.first, y = ans_y.first;
        double d = sqrt(x * x + y * y);
        printf("%.10lf\n", d);
    }
    else
    {
        printf("Poor Little H!\n");
    }

    return 0;
}
全部评论

相关推荐

10-15 09:13
已编辑
天津大学 soc前端设计
点赞 评论 收藏
分享
沉淀一会:1.同学你面试评价不错,概率很大,请耐心等待; 2.你的排名比较靠前,不要担心,耐心等待; 3.问题不大,正在审批,不要着急签其他公司,等等我们! 4.预计9月中下旬,安心过节; 5.下周会有结果,请耐心等待下; 6.可能国庆节前后,一有结果我马上通知你; 7.预计10月中旬,再坚持一下; 8.正在走流程,就这两天了; 9.同学,结果我也不知道,你如果查到了也告诉我一声; 10.同学你出线不明朗,建议签其他公司保底! 11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务