zoukankan      html  css  js  c++  java
  • codeforces707A:Brain's Photos

    Description

    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 #include<cstdio>
     3 #include<cmath>
     4 #include<cstring>
     5 #include<cstdlib>
     6 #include<algorithm>
     7 using namespace std;
     8 int n,m;
     9 bool flag;
    10 
    11 inline int getint(){
    12     int w=0,q=1;char c=getchar();
    13     while(c!='-' && (c<'0' || c>'9')) c=getchar();
    14     if(c=='-') q=-1,c=getchar();
    15     while(c>='0' && c<='9') w=w*10+c-'0',c=getchar();
    16     return w*q;
    17 }
    18 
    19 int main()
    20 {
    21     n=getint(); m=getint(); flag=false;
    22     char c;
    23     for(int i=1;i<=n;i++)
    24     for(int j=1;j<=m;j++){
    25         c=getchar();
    26         while(c<'A' || c>'Z') c=getchar();
    27         if(c!='W' && c!='B' && c!='G') flag=true;
    28     }
    29     if(flag) printf("#Color"); else printf("#Black&White");
    30     return 0;
    31 }
  • 相关阅读:
    信息安全基本概念
    GmSSL开发环境搭建及双证书生成
    Git使用教程
    linux软件管理
    在Windows中查看文件的MD5值
    odoo显示页面格式化日期的一个方法
    Ubuntu 查看文件夹大小
    docker容器中启动postgresql 9.5失败:could not locate a valid checkpoint record
    如何让postgresql日志记录所有的执行语句
    vim快捷键
  • 原文地址:https://www.cnblogs.com/ljh2000-jump/p/5793758.html
Copyright © 2011-2022 走看看