CF A and B and Chess

A and B and Chess
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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




水题。。。MAP第一发
 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 #include <string>
 5 #include <algorithm>
 6 #include <cctype>
 7 #include <queue>
 8 #include <map>
 9 using    namespace    std;
10 
11 const    int    SIZE = 10;
12 char    MAP[SIZE][SIZE];
13 int    main(void)
14 {
15     map<char,int>    white;
16     map<char,int>    black;
17     white['Q'] = 9;
18     white['R'] = 5;
19     white['B'] = 3;
20     white['N'] = 3;
21     white['P'] = 1;
22     white['K'] = 0;
23 
24     black['q'] = 9;
25     black['r'] = 5;
26     black['b'] = 3;
27     black['n'] = 3;
28     black['p'] = 1;
29     white['k'] = 0;
30 
31     int    sum_w,sum_b;
32     char    ch;
33     sum_w = sum_b = 0;
34     for(int i = 0;i < 8;i ++)
35         for(int j = 0;j < 8;j ++)
36         {
37             scanf(" %c",&ch);
38             if(islower(ch))
39                 sum_b += black[ch];
40             else    if(isupper(ch))
41                 sum_w += white[ch];
42         }
43     if(sum_w > sum_b)
44         puts("White");
45     else    if(sum_w < sum_b)
46         puts("Black");
47     else
48         puts("Draw");
49 
50     return    0;
51 }

 

posted @ 2015-04-09 21:55  Decouple  阅读(249)  评论(0编辑  收藏  举报