zoukankan      html  css  js  c++  java
  • Codeforces Round #294 (Div. 2)——A——A and B and Chess

    A and B are preparing themselves for programming contests.

    To train their logical thinking and solve problems better, A and B decided to play chess. During the game A wondered whose position is now stronger.

    For each chess piece we know its weight:

    • the queen's weight is 9,
    • the rook's weight is 5,
    • the bishop's weight is 3,
    • the knight's weight is 3,
    • the pawn's weight is 1,
    • the king's weight isn't considered in evaluating position.

    The player's weight equals to the sum of weights of all his pieces on the board.

    As A doesn't like counting, he asked you to help him determine which player has the larger position weight.

    Input

    The input contains eight lines, eight characters each — the board's description.

    The white pieces on the board are marked with uppercase letters, the black pieces are marked with lowercase letters.

    The white pieces are denoted as follows: the queen is represented is 'Q', the rook — as 'R', the bishop — as'B', the knight — as 'N', the pawn — as 'P', the king — as 'K'.

    The black pieces are denoted as 'q', 'r', 'b', 'n', 'p', 'k', respectively.

    An empty square of the board is marked as '.' (a dot).

    It is not guaranteed that the given chess position can be achieved in a real game. Specifically, there can be an arbitrary (possibly zero) number pieces of each type, the king may be under attack and so on.

    Output

    Print "White" (without quotes) if the weight of the position of the white pieces is more than the weight of the position of the black pieces, print "Black" if the weight of the black pieces is more than the weight of the white pieces and print "Draw" if the weights of the white and black pieces are equal.

    Sample test(s)
    input
    ...QK...
    ........
    ........
    ........
    ........
    ........
    ........
    ...rk...
    output
    White
    input
    rnbqkbnr
    pppppppp
    ........
    ........
    ........
    ........
    PPPPPPPP
    RNBQKBNR
    output
    Draw
    input
    rppppppr
    ...k....
    ........
    ........
    ........
    ........
    K...Q...
    ........
    output
    Black
    Note

    In the first test sample the weight of the position of the white pieces equals to 9, the weight of the position of the black pieces equals 5.

    In the second test sample the weights of the positions of the black and the white pieces are equal to 39.

    In the third test sample the weight of the position of the white pieces equals to 9, the weight of the position of the black pieces equals to 16.

    大意:统计大写小写分别的和,水~~

    #include<cstdio>
    #include<cstring>
    using namespace std;
    int main()
    {
        char map[10][10];
        int w,b;
        for(int i = 0; i < 8; i++){
            gets(map[i]);
            getchar;
        }
        w = b = 0;
       for(int i = 0; i < 8; i++){
         for(int j = 0; j < 8; j++){
                switch(map[i][j]){
                case 'q':
                    b += 9; break;
                case 'r' :
                    b += 5; break;
                case 'b':
                    b += 3;break;
                case 'n':
                    b += 3; break;
                case 'p':
                    b += 1;break;
                case 'Q':
                   w += 9;break;
                case 'R':
                    w+=5;break;
                case 'B':
                    w+=3;break;
                case'N':
                    w+=3;break;
                case'P' :
                    w+=1;break;
                }
            }
         }
         if(w > b)
            printf("White
    ");
         else if ( w < b)
            printf("Black
    ");
         else printf("Draw
    ");
      return 0;
    }
    View Code
  • 相关阅读:
    万科郁亮:不赚最后一枚铜板,不盯竞争对手
    京东到底是家零售企业 还是家互联网公司?
    Google Shopping对卖家开放 或抗衡亚马逊
    网易大裁员,善变的丁磊开始焦虑了
    菜鸟物联网战略引领行业数字化升级
    入淘创业的新赛道:淘宝自运营覆盖50万商家
    腾讯的人工智能大战已然打响!
    冷链物流市场三个重要的发展趋势
    有人的地方就有江湖,来看看这三个男生和闲鱼的故事
    CSS布局-垂直居中问题
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4350036.html
Copyright © 2011-2022 走看看