Hust oj 1943 马是走“日”的(BFS)

马是走“日”的
Time Limit: 1000 MS Memory Limit: 32768 K
Total Submit: 147(82 users) Total Accepted: 87(78 users) Rating: Special Judge: No
Description

xuxu闲来无事,去买了盘象棋,准备参加下届哈理工象棋大赛,(xuxu有一个特异功能,他能够定住对手若干秒,以便他能吃掉对方的棋子,然后若无其事的继续下棋)这天它和biaobiao在练习,xuxu大喊一声“阿门”,就定住了biaobiao,开始快速移动他的棋子,他还有一个习惯就是喜欢在特异功能的时间内使用马去吃掉对方棋子。。。假设每走完一步都需要一秒,现在你能帮他计算出他最少需要多少秒能够吃掉biaobiao的棋子么??(棋盘为9*9的方格棋盘,是不是很奇怪。。。但是马走的规则和中国象棋一样,是走“日”的)。


Input


本题有多组测试数据。

每行有四个数x1,y1,x2,y2。x1,y1表示xuxu的马所在的行和列,x2,y2表示他想要吃掉对方棋子所在的行和列。(1 <= x1,y1,x2,y2 <= 9, x1 != x2 && y1!=y2)。


Output

输出"I can eat it within n s.", n表示吃掉对方棋子所需要的最小时间。

Sample Output
6 9 8 1
4 6 6 9
Hint
I can eat it within 4 s.
I can eat it within 3 s.
#include
#include
#include
#include
#include
using namespace std;

const int Maxn = 15;
int vis[Maxn][Maxn];
int Map[Maxn][Maxn];
int fx[8] = {1,2,-1,-2,1,2,-1,-2};
int fy[8] = {2,1,2,1,-2,-1,-2,-1};
struct Point
{
    int x;
    int y;
    int step;
};

int bfs(int x1,int y1,int x2,int y2)
{
    memset(vis,0,sizeof(vis));
    Point Start,End,Temp;
    queueq;
    vis[x1][y1] = 1;
    Start.x = x1;
    Start.y = y1;
    Start.step = 0;
    q.push(Start);
    while(!q.empty())
    {
       Temp = q.front();
       if(Temp.x == x2 && Temp .y == y2)
       {
           return Temp.step;
           break;
       }
       q.pop();
       for(int i=0;i<8;i++)
       {
           End.x = fx[i] + Temp.x;
           End.y = fy[i] + Temp.y;
           if(End.x >= 1 && End.x <= 9 && End.y >= 1 && End.y <= 9 && !vis[End.x][End.y])
           {
               End.step = Temp.step + 1;
               vis[End.x][End.y] = 1;
               q.push(End);
           }
       }
    }
    return -1;
}

int main()
{
    int x1,x2,y1,y2;
    while(~scanf("%d%d%d%d",&x1,&y1,&x2,&y2))
    {
        int ans = bfs(x1,y1,x2,y2);
        printf("I can eat it within %d s.\n",ans);
    }
}


你可能感兴趣的:(搜索)