标签:space 元素 span 就是 pre pac map nan cout
大致题意就是给出N行M列的元素,找出出现次数最多的元素并输出。
#include<iostream> #include<unordered_map> using namespace std; int main() { unordered_map<int,int> mp; int m,n; cin>>m>>n; for(int i = 0; i < n; ++i) { for(int j = 0; j < m; ++j) { int t; scanf("%d",&t); //可能会超时,把cin改为scanf mp[t]++; } } int max = -1,ans = 0; for(auto it = mp.begin(); it != mp.end(); ++it) { if(max < it->second) { max = it->second; ans = it->first; } } cout<<ans; return 0; }
标签:space 元素 span 就是 pre pac map nan cout
原文地址:https://www.cnblogs.com/keep23456/p/12318395.html