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

Codeforces Round #368 (Div. 2) Brain's Photos

时间:2016-08-21 00:40:47      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

Brain‘s Photos

 

Small, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone his plans of taking over the world, but to become a photographer instead.

As you may know, the coolest photos are on the film (because you can specify the hashtag #film for such).

Brain took a lot of colourful pictures on colored and black-and-white film. Then he developed and translated it into a digital form. But now, color and black-and-white photos are in one folder, and to sort them, one needs to spend more than one hour!

As soon as Brain is a photographer not programmer now, he asks you to help him determine for a single photo whether it is colored or black-and-white.

Photo can be represented as a matrix sized n × m, and each element of the matrix stores a symbol indicating corresponding pixel color. There are only 6 colors:

  • ‘C‘ (cyan)
  • ‘M‘ (magenta)
  • ‘Y‘ (yellow)
  • ‘W‘ (white)
  • ‘G‘ (grey)
  • ‘B‘ (black)

The photo is considered black-and-white if it has only white, black and grey pixels in it. If there are any of cyan, magenta or yellow pixels in the photo then it is considered colored.

Input
 

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 100) — the number of photo pixel matrix rows and columns respectively.

Then n lines describing matrix rows follow. Each of them contains m space-separated characters describing colors of pixels in a row. Each character in the line is one of the ‘C‘, ‘M‘, ‘Y‘, ‘W‘, ‘G‘ or ‘B‘.

Output
 

Print the "#Black&White" (without quotes), if the photo is black-and-white and "#Color" (without quotes), if it is colored, in the only line.

Examples
Input
 
2 2
C M
Y Y
Output
 
#Color
Input
 
3 2
W W
W W
B B
Output
 
#Black&White
Input
 
1 1
W
Output
 
#Black&White

题意:
  太水了,都不想写了。。。
技术分享
 1 # include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     int n, m;
 6     char ch;
 7     cin >> n >> m;
 8     int flag = 0;
 9     for(int i = 0; i < n; i++)
10         for(int j = 0; j < m; j++)
11         {
12             cin >> ch;
13             if(ch == C || ch == M || ch == Y)
14                 flag = 1;
15         }
16     if(flag)
17         cout << "#Color" << endl;
18     else
19         cout << "#Black&White" << endl;
20     
21     return 0;
22 }
View Code

 

 

Codeforces Round #368 (Div. 2) Brain's Photos

标签:

原文地址:http://www.cnblogs.com/lyf-acm/p/5791561.html

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