题解 | 找最小数

找最小数

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

#include <stdio.h>
#include <algorithm>
#include <vector>
using namespace std;
struct xy{
    int x;
    int y;
};
bool compare(xy lhs,xy rhs){
    if(lhs.x<rhs.x){
        return true;
    }else if(lhs.x==rhs.x){
        if(lhs.y<rhs.y){
            return true;
        }
        else{
            return false;
        }
    }else{
        return false;
    }
}
int main(){
    int n,x,y;
    scanf("%d",&n);
    vector<xy> min(n);
    for(int i=0;i<n;++i){
        scanf("%d %d",&min[i].x,&min[i].y);
    }
    sort(min.begin(),min.end(),compare);
    printf("%d %d",min[0].x,min[0].y);
    return 0;
}

#shit#
全部评论

相关推荐

积极的小学生不要香菜:你才沟通多少,没500不要说难
点赞 评论 收藏
分享
Java大菜狗:纯纯招黑奴,一天还不到两百那么多要求,还不迟到早退,以为啥啊,给一点工资做一堆活,还以不拖欠员工工资为荣,这是什么值得骄傲的事情吗,纯纯***公司
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务