PAT1054. The Dominant Color (20)

#include <iostream>
#include <map>
using namespace std;
int n,m;
map<int,int> imgMap;
int maxV=0;
int v;
int main(){
	cin>>n>>m;
	for(int i=0;i<n;i++){
		for(int j=0;j<m;j++){
			int tmp;
			cin>>tmp;
			imgMap[tmp]++;
			if(imgMap[tmp]>maxV){
				maxV=imgMap[tmp];
				v=tmp;
			}
		}
	}
	cout<<v<<endl;
    return 0;
}

 

posted @ 2016-03-27 19:21  Yellowman  阅读(114)  评论(0编辑  收藏  举报
TVRBMExqRXlPQzR5TXpjdU1UVTEK\n