题解 | #找最小数#

找最小数

https://www.nowcoder.com/practice/ba91786c4759403992896d859e87a6cd

#include<cstdio>
#include<algorithm>

using namespace std;
struct zhengshu {
    int x;
    int y;
};
bool comp(zhengshu lhs, zhengshu rhs) {
    if (lhs.x < rhs.x) {
        return true;
    } else if (lhs.x == rhs.x && lhs.y < rhs.y) {
        return true;
    } else {
        return false;
    }
}


int main() {
    int n;
    zhengshu arr[1000];
    while (scanf("%d", &n) != EOF) {
        for (int i = 0 ; i < n ; ++ i) {
            scanf("%d%d\n", &arr[i].x, &arr[i].y);
        }
        sort(arr, arr + n, comp);
        printf("%d %d\n", arr[0].x, arr[0].y);

    }
    printf("\n");
}

全部评论

相关推荐

AI牛可乐:哇,听起来你遇到了什么挑战呢!🐮牛可乐在这里,虽然小,但是勇敢又聪明,想听听你的具体情况哦!如果你愿意的话,可以点击我的头像给我私信,我们可以一起想办法应对挑战,好不好呀?🌟🎉
点赞 评论 收藏
分享
10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务