杭电 1372 Knight Moves(最经典的BFS之模板题)

Problem Description
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
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
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.

这就是一个活生生的BFS模板题

#include <bits/stdc++.h>
using namespace std;
int d[8][2] = {
   1, 2, -1, 2, 1, -2, -1, -2, 2, 1, 2, -1, -2, 1, -2, -1};
int dir[8][2] = {
   {
   1, -2}, {
   2, -1}, {
   2, 1}, {
   1, 2}, {
   -1, 2}, {
   -2, 1}, {
   -2, -1}, {
   -1, -2}};
int vis[100][100];
int sx, sy, fx, fy, step;
struct node
{
   
    int x, y, step;
};
void bfs()
{
   
    memset(vis, 0, sizeof(vis));
    queue<node> q;
    node s, e;
    s.x = sx;
    s.y = sy;
    s.step = 0;
    vis[s.x][s.y] = 1;
    q.push(s);
    while (!q.empty())
    {
   
        s = q.front();
        q.pop();
        if (s.x == fx && s.y == fy)
        {
   
            step = s.step;
            return;
        }
        for (int i = 0; i < 8; ++i)
        {
   
            e.x = s.x + dir[i][0];
            e.y = s.y + dir[i][1];
            if (e.x >= 1 && e.x <= 8 && e.y >= 1 && e.y <= 8 && !vis[e.x][e.y])
            {
   
                e.step = s.step + 1;
                vis[e.x][e.y] = 1;
                q.push(e);
            }
        }
    }
}
int main()
{
   
    char c1, c2;
    int x1, y1;
    while (~scanf("%c%d %c%d", &c1, &x1, &c2, &y1))
    {
   
        getchar();
        sx = c1 - 'a' + 1;
        sy = x1;
        fx = c2 - 'a' + 1;
        fy = y1;
        bfs();
        printf("To get from %c%d to %c%d takes %d knight moves.\n", c1, x1, c2, y1, step);
    }
    return 0;
}
生活的本质就是,千难之后有万难。我们一路过关斩将,砥砺前行,收获的不仅是生活路上的惊喜与浪漫,还有岁月的沉淀与优雅
全部评论

相关推荐

找到实习了&nbsp;给了150一天&nbsp;但是说是低代码&nbsp;值得去吗
码农索隆:是在没实习,可去,待个一两周,不行就润呗
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-09 12:02
ssob上原来真有BOSS啊
硫蛋蛋:这种也是打工的,只不是是给写字楼房东打工
点赞 评论 收藏
分享
06-15 20:57
已编辑
门头沟学院 Java
CARLJOSEPH...:年轻人有傲气很正常,但是建议工作前洗净傲气。 说实在的,什么奖学金什么奖项的都很一般。尊重你的老师,在有时间的时候去上课,真遇到走不开的事,请态度端正地向你的老师说明情况,请求请假。我相信任何一个有师德的老师都会允许的(我的老师就是这样)。
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务