PAT1054. The Dominant Color (20)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
}

 

以上是关于PAT1054. The Dominant Color (20)的主要内容,如果未能解决你的问题,请参考以下文章

PAT Advanced 1054 The Dominant Color (20分)

PAT1054. The Dominant Color (20)

PAT (Advanced Level) 1054. The Dominant Color (20)

1054:The Dominant Color

1054 The Dominant Color (20)(20 分)

1054 The Dominant Color