• uva 439


     Knight Moves 

    A friend of you is doing research on the Traveling Knight Problem (TKP) where you are to find the shortest closed tour of knight moves that visits each square of a given set of n squares on a chessboard exactly once. He thinks that the most difficult part of the problem is determining the smallest number of knight moves between two given squares and that, once you have accomplished this, finding the tour would be easy.

    Of course you know that it is vice versa. So you offer him to write a program that solves the "difficult" part.

    Your job is to write a program that takes two squares a and b as input and then determines the number of knight moves on a shortest route from a to b.

    Input Specification

    The input file will contain one or more test cases. Each test case consists of one line containing two squares separated by one space. A square is a string consisting of a letter (a-h) representing the column and a digit (1-8) representing the row on the chessboard.

    Output Specification

    For each test case, print one line saying "To get from xx to yy takes n knight moves.".

    Sample Input

    e2 e4
    a1 b2
    b2 c3
    a1 h8
    a1 h7
    h8 a1
    b1 c3
    f6 f6

    Sample Output

    To get from e2 to e4 takes 2 knight moves.
    To get from a1 to b2 takes 4 knight moves.
    To get from b2 to c3 takes 2 knight moves.
    To get from a1 to h8 takes 6 knight moves.
    To get from a1 to h7 takes 5 knight moves.
    To get from h8 to a1 takes 6 knight moves.
    To get from b1 to c3 takes 1 knight moves.
    To get from f6 to f6 takes 0 knight moves.
    #include <iostream>
    #include <stack>
    #include <cstring>
    #include <cstdio>
    #include <string>
    #include <algorithm>
    #include <queue>
    #include <set>
    #include <map>
    #include <fstream>
    #include <stack>
    #include <list>
    #include <sstream>
    #include <cmath>
    
    using namespace std;
    
    #define ms(arr, val) memset(arr, val, sizeof(arr))
    #define mc(dest, src) memcpy(dest, src, sizeof(src))
    #define N 10
    #define INF 0x3fffffff
    #define vint vector<int>
    #define setint set<int>
    #define mint map<int, int>
    #define lint list<int>
    #define sch stack<char>
    #define qch queue<char>
    #define sint stack<int>
    #define qint queue<int>
    
    int dir[8][2] = {-1, -2, 1, -2, -2, -1, 2, -1, -2, 1, 2, 1, -1, 2, 1, 2};
    //int dir[6][3] = {0, 0, -1, 0, -1, 0, 0, 1, 0, 0, 0, 1, -1, 0, 0, 1, 0, 0};
    char mazes[N][N][N];
    int l, r, c;
    
    struct node
    {
        int i, j, lay;
        node(int i = 0, int j = 0, int lay = 0): i(i), j(j), lay(lay)
        {}
        void set(int i, int j)
        {
            this->i = i;
            this->j = j;
            lay = 0;
        }
    
        bool operator == (const node& b)
        {
            return (b.i == i && b.j == j);
        }
    };
    
    bool chess[N][N];
    node s, e;
    queue<node> que;
    char ss[2][N];
    
    int bfs()
    {
        ms(chess, 0);
        que.push(s);
        chess[s.i][s.j] = true;
        node t;
        int i, j;
        while (!que.empty())
        {
            t = que.front();
            que.pop();
            for (int k = 0; k < 8; k++)
            {
                i = t.i + dir[k][0];
                j = t.j + dir[k][1];
                if (i > 0 && j > 0 && i < 9 && j < 9)
                {
                    node tt(i, j, t.lay + 1);
                    if (tt == e)
                    {
                        while (!que.empty())
                        {
                            que.pop();
                        }
                        return tt.lay;
                    }
                    if (!chess[i][j])
                    {
                        chess[i][j] = true;
                        que.push(tt);
                    }
                }
            }
        }
    }
    
    int main()
    {
        while (~scanf("%s%s", ss[0], ss[1]))
        {
            s.set(ss[0][0] - 'a' + 1, ss[0][1] - '0');
            e.set(ss[1][0] - 'a' + 1, ss[1][1] - '0');
            printf("To get from %s to %s takes %d knight moves.
    ", ss[0], ss[1], (strcmp(ss[0], ss[1]) == 0 ? 0 : bfs()));
        }
        return 0;
    }
  • 相关阅读:
    python -m pip install captcha --user
    用隐马尔可夫模型做基因预测
    爬取知乎如何通俗易懂地解释「协方差」与「相关系数」的概念?
    梯度弥散与梯度爆炸
    CIFAR-10数据集图像分类【PCA+基于最小错误率的贝叶斯决策】
    CIFAR-10 dataset 的下载与使用
    JMeter Don't use GUI mode for load testing!
    JMeter5.0版本安装及配置
    POSTMAN之断言
    PLSQL基础使用
  • 原文地址:https://www.cnblogs.com/jecyhw/p/3914684.html
Copyright © 2020-2023  润新知