跨考太痛苦了,现在胃好痛,注意力不集中。
#include<bits/stdc++.h>
using namespace std;
int main(){int n,m,temp;map<int,int> mp;cin>>n>>m;for(int i=0;i<n*m;i++){cin>>temp;mp[temp]++;}int max=0;for(auto it=mp.begin();it!=mp.end();it++){if((it->second)>max){temp=it->first;max=it->second;}}cout<<temp;return 0;
}