本文主要是介绍Codeforces Round #229 (Div. 2) A. Inna and Alarm Clock,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这道题很简单的,就是判断给定数据有几个不同的行,有几个不同的列,输出较小值
代码如下:
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#define maxn 100010
using namespace std;
int a[maxn],b[maxn];
int main(void){int n;while(cin >> n){for(int i=0; i<n; ++i)cin >> a[i] >> b[i];sort(a,a+n);sort(b,b+n);int s = 1;int t = 1;for(int i=1; i<n; ++i){if(a[i] != a[i-1])++s;if(b[i] != b[i-1])++t;}if(s<=t)cout << s << endl;else cout << t << endl;}return 0;
}
这篇关于Codeforces Round #229 (Div. 2) A. Inna and Alarm Clock的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!