题目
Behind the scenes in the computer’s memory, color is always talked about as a series of 24 bits of information for each pixel. In an image, the color with the largest proportional area is called the dominant color. A strictly dominant color takes more than half of the total area. Now given an image of resolution M by N (for example, 800×600), you are supposed to point out the strictly dominant color.
Input Specification:
Each input file contains one test case. For each case, the first line contains 2 positive numbers: M(≤800)M (≤800)M(≤800)and N(≤600)N (≤600)N(≤600) which are the resolutions of the image. Then N lines follow, each contains M digital colors in the range [0,224)[0,2^{24})[0,224). It is guaranteed that the strictly dominant color exists for each input image. All the numbers in a line are separated by a space.
Output Specification:
For each test case, simply print the dominant color in a line.
Sample Input:
5 3
0 0 255 16777215 24
24 24 0 0 24
24 0 24 24 24
Sample Output:
24
解题思路
题目大意: 给你一个MxNMxNMxN分辨率大小的图像,定义超过一半数量的色度值为主色,计算该主色。
解题思路: 运用哈希表的思想,直接用map统计主色即可。
/*
** @Brief:No.1054 of PAT advanced level.
** @Author:Jason.Lee
** @Date:2018-12-21
** @Solution: https://blog.csdn.net/CV_Jason/article/details/85227336
*/
#include<iostream>
#include<map>
#include<algorithm>
using namespace std;
int main(){
int M,N,value;
while(cin>>M>>N){
map<int,int> image;
for(int i=0;i<M*N;i++){
scanf("%d",&value);
image[value]++;
}
int max = 0;
int dominant = 0;
for(auto elem:image){
//cout<<"elem.first = "<<elem.first<<" elem.second = "<<elem.second<<endl;
if(elem.second>max){
dominant = elem.first;
max = elem.second;
//cout<<"max = "<<max<<" dominant = "<<dominant<<endl;
}
}
printf("%d\n",dominant);
}
return 0;
}
总结
这道题没啥弯弯绕绕的,如果对map很熟悉的话,直接手到擒来,但如果对map不熟悉,手动实现map是一件费力不讨好的事。可见PAT一部分考察对STL的运用。