zoukankan      html  css  js  c++  java
  • poj 2996Help Me with the Game

    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,e4
    Black: Ke8,Qd8,Ra8,Rh8,Bc8,Ng8,Nc6,a7,b7,c7,d7,e7,f7,h7,h6

    题目看上去很吓人=。=就是个模拟题,仔细点写就好了。。
    View Code
      1 #include <cstdio>
      2 #include <cstring>
      3 #include <algorithm>
      4 using namespace std;
      5 
      6 struct chess
      7 {
      8     char x,y,c;
      9 } p[100],str[100];
     10 int charge(char c)
     11 {
     12     if(c=='K') return 0;
     13     if(c=='Q') return 1;
     14     if(c=='R') return 2;
     15     if(c=='B') return 3;
     16     if(c=='N') return 4;
     17     return 5;
     18 }
     19 bool cmp(chess a,chess b)
     20 {
     21     if(a.c==b.c)
     22     {
     23         if(a.y==b.y)
     24             return a.x<b.x;
     25         return a.y>b.y;
     26     }
     27     return charge(a.c)<charge(b.c);
     28 }
     29 bool fcmp(chess a,chess b)
     30 {
     31     if(a.c==b.c)
     32     {
     33         if(a.y==b.y)
     34             return a.x<b.x;
     35         return a.y<b.y;
     36     }
     37     return charge(a.c)<charge(b.c);
     38 }
     39 int main()
     40 {
     41     char ss[100],s[100];
     42     int i,j,k,m;
     43     scanf("%s",s);
     44     for(i=0,k=0,m=0; i<8; i++)
     45     {
     46         scanf("%s",ss);
     47         scanf("%s",s);
     48         for(j=0; ss[j]; j++)
     49         {
     50             if(ss[j]=='.'||ss[j]==':'||ss[j]=='|')
     51                 continue;
     52             if(ss[j]>='a'&&ss[j]<='z')
     53             {
     54                 if(ss[j]=='p')
     55                 {
     56                     p[k].x=(j-2)/4+'a';
     57                     p[k].y=8-i+'0';
     58                     p[k].c='*';
     59                     k++;
     60                 }
     61                 else
     62                 {
     63                     p[k].x=(j-2)/4+'a';
     64                     p[k].y=8-i+'0';
     65                     p[k].c=ss[j]-'a'+'A';
     66                     k++;
     67                 }
     68             }
     69             else if(ss[j]>='A'&&ss[j]<='Z')
     70             {
     71                 if(ss[j]=='P')
     72                 {
     73                     str[m].x=(j-2)/4+'a';
     74                     str[m].y=8-i+'0';
     75                     str[m].c='*';
     76                     //str[m].flag=1;
     77                     //str[m++]=p[k];
     78                     m++;
     79                 }
     80                 else
     81                 {
     82                     str[m].x=(j-2)/4+'a';
     83                     str[m].y=8-i+'0';
     84                     str[m].c=ss[j];
     85                     //str[m].flag=1;
     86                     //str[m++]=p[k];
     87                     m++;
     88                 }
     89             }
     90         }
     91     }
     92     sort(p,p+k,cmp);
     93     sort(str,str+m,fcmp);
     94     printf("White: ");
     95     for(i=0,j=0; i<m; i++)
     96     {
     97         if(j!=0) printf(",");
     98         if(str[i].c!='*')
     99             printf("%c",str[i].c);
    100         printf("%c%c",str[i].x,str[i].y);
    101         j++;
    102     }
    103     printf("\n");
    104     printf("Black: ");
    105     for(i=0,j=0; i<k; i++)
    106     {
    107         if(j!=0) printf(",");
    108         if(p[i].c!='*')
    109             printf("%c",p[i].c);
    110         printf("%c%c",p[i].x,p[i].y);
    111         j++;
    112     }
    113     printf("\n");
    114     return 0;
    115 }
  • 相关阅读:
    在安装SqlServer2008时,有一项安装程序支持规则,为什么重新启动计算机那一项总是失败
    在 ServiceModel 客户端配置部分中,找不到引用协定“WebServiceTest.WebServiceSoap”的默认终结点元素。这可能是因为未找到应用程序的配置文件,或者是因为客户端元素
    IIS7上设置MIME让其支持android和Iphone的更新下载
    c# 常用正则
    数据库增容方法
    初识MAC(由window到mac的转变适应)
    无需控件直接导出xls(csv)
    2017中国屏幕分辨率统计---UI设计应注重的问题
    网页制作基础及HTML教学模块安排
    传统教学设计模板
  • 原文地址:https://www.cnblogs.com/wilsonjuxta/p/2953753.html
Copyright © 2011-2022 走看看