北邮 找最小数 Easy
Posted songlinxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了北邮 找最小数 Easy相关的知识,希望对你有一定的参考价值。
基本思想:
无;
关键点:
无;
#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的主要内容,如果未能解决你的问题,请参考以下文章
[题解] [AGC005F] Many Easy Problems
leetcode_easy_array1380. Lucky Numbers in a Matrix