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 Mby N (for example, 8), 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 (≤) and N (≤) which are the resolutions of the image. Then N lines follow, each contains M digital colors in the range [0). 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

 #include <iostream>
#include <vector>
#include <unordered_map> using namespace std; int main()
{
int M, N;
cin >> M >> N;
unordered_map<int, int>res;
vector<vector<int>>data(M, vector<int>(N, ));
for (int i = ; i < N; ++i)
{
for (int j = ; j < M; ++j)
{
int a;
cin >> a;
res[a]++;
if (res[a] > M*N / )
{
cout << a << endl;
break;
}
}
}
return ; }

最新文章

  1. Python开发程序:RPC异步执行命令(RabbitMQ双向通信)
  2. Spring 发送 Email
  3. RegOpenKeyEx和RegSetValueEx返回ERROR_SUCCESS,但注册表未发生变化。
  4. js DOM Node类型
  5. java-io-FileReader和FileWriter类
  6. 事故记录-过多进程致使CPU卡死
  7. oracle PL/SQL基础编程
  8. pushState与replaceState区别
  9. sql server 存储过程分隔split
  10. Mina框架断包、粘包问题解决方式
  11. LeetCode——Pascal&amp;#39;s Triangle
  12. POJ 3186 Treats for the Cows
  13. 使用flexbox来布局web应用
  14. jquery的ajax提交后,会跳转页面
  15. css基础知识之属性选择器
  16. CentOS一般用户和root用户之间的切换
  17. java io系列05之 ObjectInputStream 和 ObjectOutputStream
  18. NowCoder110E Pocky游戏 状压DP
  19. Inside JVM 内存模型
  20. 006.KVM虚机克隆

热门文章

  1. linux操作练习题
  2. 盒子阴影 box-shadow
  3. 控制变量行业年份回归时在STATA里怎么操作_stata 分年份回归
  4. 08_springboot2.x自定义starter
  5. (转)行为树(Behavior Tree)实践(1)– 基本概念
  6. JS控制语句 编程练习 学生数据,分别是姓名、性别、年龄和年级,接下来呢,我们要利用JavaScript的知识挑出其中所有是大一的女生的的名字哦。
  7. Zuul微服务网关
  8. 使用movable-view制作可拖拽的微信小程序弹出层效果。
  9. Linux 的文件和目录管理类命令
  10. php析构函数小结