zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    TOJ 2776 CD Making
    int型、long型和long long型
    Hadoop HA- hadoop集群部署
    大数据之路- Hadoop环境搭建(Linux)
    Hadoop HA- zookeeper安装配置
    Zookeeper- Error contacting service. It is probably not running解决方案和原理
    大数据- 自定义Log4j日记
    Hadoop- Hadoop环境搭建
    域名解析
    JAVA- JDBC之DBHelper
  • 原文地址:https://www.cnblogs.com/jecyhw/p/3914684.html
Copyright © 2011-2022 走看看