zoukankan      html  css  js  c++  java
  • Codeforces Round #368 (Div. 2) Brain's Photos

    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
     
    生命不息,奋斗不止,这才叫青春,青春就是拥有热情相信未来。
  • 相关阅读:
    HTML DOM 12 表格排序
    HTML DOM 10 常用场景
    HTML DOM 10 插入节点
    HTML DOM 09 替换节点
    HTML DOM 08 删除节点
    HTML DOM 07 创建节点
    022 注释
    024 数字类型
    005 基于面向对象设计一个简单的游戏
    021 花式赋值
  • 原文地址:https://www.cnblogs.com/lyf-acm/p/5791561.html
Copyright © 2011-2022 走看看