map秒了
2023-11-11 12:44:44
发布于:广东
5阅读
0回复
0点赞
#include <iostream>
#include <cstdio>
#include <map>
using namespace std;
map <int, int> m;
int main(){
int n;
cin >> n;
for(int i = 1; i <= n; i++){
int x;
cin >> x;
m[x]++;
}for(auto it:m) if(it.second * 2 > n){
cout << it.first;
break;
}
return 0;
}
这里空空如也
有帮助,赞一个