码迷,mamicode.com
首页 > 其他好文 > 详细

北邮 找最小数 Easy

时间:2020-03-10 20:03:04      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:ios   div   iostream   mes   i++   ret   return   sort   bsp   

基本思想:

无;

 

关键点:

无;

 

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;

struct node {
	int x;
	int y;
};

node num[1010];

bool cmp(node a, node b) {
	if (a.x == b.x)
		return a.y < b.y;
	else {
		return a.x < b.x;
	}
}

int main() {
	int n;
	while (cin >> n) {
		for (int i = 0; i < n; i++) {
			cin >> num[i].x >> num[i].y;
		}
		sort(num, num + n, cmp);
		cout << num[0].x << " " << num[0].y << endl;
	}
}

  

北邮 找最小数 Easy

标签:ios   div   iostream   mes   i++   ret   return   sort   bsp   

原文地址:https://www.cnblogs.com/songlinxuan/p/12458040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!