码迷,mamicode.com
首页 > 其他好文 > 详细

1054 The Dominant Color

时间:2020-02-16 20:17:05      阅读:51      评论:0      收藏:0      [点我收藏+]

标签: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;
}

 

1054 The Dominant Color

标签:space   元素   span   就是   pre   pac   map   nan   cout   

原文地址:https://www.cnblogs.com/keep23456/p/12318395.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!