zoukankan      html  css  js  c++  java
  • POJ 2996, Help 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

    Source
    CTU Open 2005


    // POJ2996.cpp : Defines the entry point for the console application.
    //

    #include 
    <iostream>
    #include 
    <string>
    #include 
    <set>
    using namespace std;

    class WLess
    {
    public:
        
    bool operator()(const string& str1, const string& str2)
        {
            
    const string CAP = "KQRBN";
            
    int index1 = CAP.find(str1[0]);
            
    int index2 = CAP.find(str2[0]);

            
    if (index1 != -1 && index2 != -1 && index1 != index2) return index1 < index2;
            
    else if(index1 != -1 && index2 != -1 && index1 == index2 && str1[2!= str2[2]) return str1[2< str2[2];
            
    else if(index1 != -1 && index2 != -1 && index1 == index2 && str1[2== str2[2]) return str1[1< str2[1];

            
    else if(index1 == -1 && index2 == -1 && str1[1!= str2[1]) return str1[1< str2[1];
            
    else if(index1 == -1 && index2 == -1 && str1[1== str2[1]) return str1 < str2;

            
    else if(index1 == -1 && index2 != -1return false;
            
    else if(index1 != -1 && index2 == -1return true;
            
    return false;
        }
    };
    class BLess
    {
    public:
        
    bool operator()(const string& str1, const string& str2)
        {
            
    const string CAP = "KQRBN";
            
    int index1 = CAP.find(str1[0]);
            
    int index2 = CAP.find(str2[0]);

            
    if (index1 != -1 && index2 != -1 && index1 != index2) return index1 < index2;
            
    else if(index1 != -1 && index2 != -1 && index1 == index2 && str1[2!= str2[2]) return str1[2> str2[2];
            
    else if(index1 != -1 && index2 != -1 && index1 == index2 && str1[2== str2[2]) return str1[1< str2[1];

            
    else if(index1 == -1 && index2 == -1 && str1[1!= str2[1]) return str1[1> str2[1];
            
    else if(index1 == -1 && index2 == -1 && str1[1== str2[1]) return str1 < str2;

            
    else if(index1 == -1 && index2 != -1return false;
            
    else if(index1 != -1 && index2 == -1return true;
            
    return false;
        }
    };
    int main(int argc, char* argv[])
    {
        
    string line;
        cin 
    >> line;
        
    set<string, WLess> white;
        
    set<string, BLess> black;
        
        
    int pos;
        
    for (int i = 8; i >= 1--i)
        {
            cin 
    >> line;
            pos 
    = 2;
            
    for (int j = 0; j < 8++j)
            {
                
    if (line[pos] != '.' && line[pos] != ':')
                {
                    
    if (line[pos] <= 'z' && line[pos] >= 'a')
                    {
                        
    if (line[pos] != 'p')
                            black.insert(
    string(""+ (char)(line[pos] - 'a' + 'A'+ (char)(j + 'a'+ (char)(i + '0'));
                        
    else
                            black.insert(
    string(""+ (char)(j + 'a'+ (char)(i + '0'));
                    }
                    
    else if (line[pos] <= 'Z' && line[pos] >= 'A')
                    {
                        
    if (line[pos] != 'P')
                            white.insert(
    string(""+ (char)(line[pos]) + (char)(j + 'a'+ (char)(i + '0'));
                        
    else
                            white.insert(
    string(""+ (char)(j + 'a'+ (char)(i + '0'));
                    }
                }
                pos 
    += 4;
            }
            cin 
    >> line;
        }

        cout 
    << "White: ";
        
    set<string, WLess>::iterator witer = white.begin();
        
    while (witer != white.end())
        {
            
    if (witer == white.begin())cout << *witer;
            
    else cout <<","<< *witer;
            
    ++witer;
        }
        cout
    <<"\n";

        cout 
    << "Black: ";
        
    set<string, BLess>::iterator biter = black.begin();
        
    while (biter != black.end())
        {
            
    if (biter == black.begin())cout << *biter;
            
    else cout <<","<< *biter;
            
    ++biter;
        }
        cout
    <<"\n";

        
    return 0;
    }

  • 相关阅读:
    当我们开发一个接口时需要注意些什么
    一条查询语句在MySQL服务端的执行过程
    痞子衡嵌入式:基于恩智浦i.MXRT1060的MP4视频播放器(RT-Mp4Player)设计
    痞子衡嵌入式:基于恩智浦i.MXRT1010的MP3音乐播放器(RT-Mp3Player)设计
    《痞子衡嵌入式半月刊》 第 18 期
    痞子衡嵌入式:MCUBootUtility v2.4发布,轻松更换Flashloader文件
    华为HMS Core助力开发者打造精品应用,共创数智生活
    HMS Core 6.0即将发布 加码应用生态升级
    华为开发者联盟生态市场企业特惠GO第1期—应用软件专题
    卡片跳转快应用指定页面,如何点返回直接退出快应用回到卡片
  • 原文地址:https://www.cnblogs.com/asuran/p/1576089.html
Copyright © 2011-2022 走看看