POJ-2996-Help Me with the Game

来源:互联网 发布:程序员要考什么证 编辑:程序博客网 时间:2024/06/06 00:25
Help Me with the Game
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 4448 Accepted: 2809

Description

Your task is to read a picture of a chessboard position and print it in the chess notation.

Input

The input consists of an ASCII-art picture of a chessboard with chess pieces on positions described by the input. The pieces of the white player are shown in upper-case letters, while the black player's pieces are lower-case letters. The letters are one of "K" (King), "Q" (Queen), "R" (Rook), "B" (Bishop), "N" (Knight), or "P" (Pawn). The chessboard outline is made of plus ("+"), minus ("-"), and pipe ("|") characters. The black fields are filled with colons (":"), white fields with dots (".").

Output

The output consists of two lines. The first line consists of the string "White: ", followed by the description of positions of the pieces of the white player. The second line consists of the string "Black: ", followed by the description of positions of the pieces of the black player. 

The description of the position of the pieces is a comma-separated list of terms describing the pieces of the appropriate player. The description of a piece consists of a single upper-case letter that denotes
the type of the piece (except for pawns, for that this identifier is omitted). This letter is immediatelly followed by the position of the piece in the standard chess notation -- a lower-case letter between "a" and "h" that determines the column ("a" is the leftmost column in the input) and a single digit between 1 and 8 that determines the row (8 is the first row in the input). 

The pieces in the description must appear in the following order: King("K"), Queens ("Q"), Rooks ("R"), Bishops ("B"), Knights ("N"), and pawns. Note that the numbers of pieces may differ from the initial position because of capturing the pieces and the promotions of pawns. In case two pieces of the same type appear in the input, the piece with the smaller row number must be described before the other one if the pieces are white, and the one with the larger row number must be described first if the pieces are black. If two pieces of the same type appear in the same row, the one with the smaller column letter must appear first.

Sample Input

+---+---+---+---+---+---+---+---+|.r.|:::|.b.|:q:|.k.|:::|.n.|:r:|+---+---+---+---+---+---+---+---+|:p:|.p.|:p:|.p.|:p:|.p.|:::|.p.|+---+---+---+---+---+---+---+---+|...|:::|.n.|:::|...|:::|...|:p:|+---+---+---+---+---+---+---+---+|:::|...|:::|...|:::|...|:::|...|+---+---+---+---+---+---+---+---+|...|:::|...|:::|.P.|:::|...|:::|+---+---+---+---+---+---+---+---+|:P:|...|:::|...|:::|...|:::|...|+---+---+---+---+---+---+---+---+|.P.|:::|.P.|:P:|...|:P:|.P.|:P:|+---+---+---+---+---+---+---+---+|:R:|.N.|:B:|.Q.|:K:|.B.|:::|.R.|+---+---+---+---+---+---+---+---+

Sample Output

White: Ke1,Qd1,Ra1,Rh1,Bc1,Bf1,Nb1,a2,c2,d2,f2,g2,h2,a3,e4Black: Ke8,Qd8,Ra8,Rh8,Bc8,Ng8,Nc6,a7,b7,c7,d7,e7,f7,h7,h6

Source

CTU Open 2005
#include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>using namespace std;struct node{    char id;    char lie;    int hang;    int level;}a[100],t;int main(){    int i,j;    char str[20][40];    for(i=0;i<17;i++)    {        scanf("%s",str[i]);    }    int l=0;    for(i=1;i<17;i=i+2)    {        for(j=2;j<33;j=j+4)        {            if((str[i][j]>='a'&&str[i][j]<='z')||(str[i][j]>='A'&&str[i][j]<='Z'))            {                if(str[i][j]>='a'&&str[i][j]<='z')                    a[l].id=str[i][j]-32;                else                    a[l].id=str[i][j];                a[l].lie=((j-2)/4)+'a';                a[l].hang=8-(i-1)/2;                if(str[i][j]=='K')                    a[l].level=1;                else if(str[i][j]=='Q')                    a[l].level=2;                else if(str[i][j]=='R')                    a[l].level=3;                else if(str[i][j]=='B')                    a[l].level=4;                else if(str[i][j]=='N')                    a[l].level=5;                else if(str[i][j]=='P')                    a[l].level=6;                else if(str[i][j]=='k')                    a[l].level=7;                else if(str[i][j]=='q')                    a[l].level=8;                else if(str[i][j]=='r')                    a[l].level=9;                else if(str[i][j]=='b')                    a[l].level=10;                else if(str[i][j]=='n')                    a[l].level=11;                else if(str[i][j]=='p')                    a[l].level=12;                //printf("%c%c%d%d\n",a[l].id,a[l].lie,a[l].hang,a[l].level);                l++;            }        }    }    for(i=0;i<l;i++)    {        for(j=0;j<l-1;j++)        {            if(a[j].level>a[j+1].level)            {                t=a[j];                a[j]=a[j+1];                a[j+1]=t;            }            else if(a[j].level==a[j+1].level)            {                if(a[j+1].hang<5&&a[j].hang>a[j+1].hang)                {                     t=a[j];                    a[j]=a[j+1];                    a[j+1]=t;                }                else if(a[j].hang>4&&a[j].hang<a[j+1].hang)                {                    t=a[j];                    a[j]=a[j+1];                    a[j+1]=t;                }                else if(a[j].hang==a[j+1].hang)                {                    if(a[j].lie>a[j+1].lie)                    {                        t=a[j];                        a[j]=a[j+1];                        a[j+1]=t;                    }                }            }        }    }    printf("White: ");    for(i=0;i<l;i++)    {        if(a[i].level==1)        {             printf("%c%c%d",a[i].id,a[i].lie,a[i].hang);        }        else if(a[i].level<6)            printf(",%c%c%d",a[i].id,a[i].lie,a[i].hang);        else if(a[i].level==6)            printf(",%c%d",a[i].lie,a[i].hang);        else            break;    }    printf("\nBlack: ");    for(j=i;j<l;j++)    {        if(a[j].level==7)        {             printf("%c%c%d",a[j].id,a[j].lie,a[j].hang);        }        else if(a[j].level<12)            printf(",%c%c%d",a[j].id,a[j].lie,a[j].hang);        else if(a[j].level==12)            printf(",%c%d",a[j].lie,a[j].hang);    }    return 0;}


0 0
原创粉丝点击