poj 1915Knight moves

题目大意是输入起始坐标终点坐标,按题目给的8个方向寻找到达终点的最小步数。刚接触搜索wa了好多次才过的

ac代码如下:

#include<stdio.h>
#include<string.h>
#include<queue>
using namespace std;
int en_x,en_y,st_x,st_y;
int len;
int vis[301][301];
int dir[8][2]={{2,1},{1,2},{-1,2},{-2,1},{-2,-1},{-1,-2},{1,-2},{2,-1}};
struct Node{
    int x,y;
    int step;
}node;
void bfs()
{
    queue<Node> q;
    Node first,next;
    first.x=st_x;
    first.y=st_y;
    first.step=0;
    memset(vis,0,sizeof(vis));
    vis[st_x][st_y]=1;
    q.push(first);
    while(!q.empty())
    {
        Node now;
        now=q.front();
        q.pop();
        for(int i=0;i<8;i++)
        {
            next.x=now.x+dir[i][0];
            next.y=now.y+dir[i][1];
           if(!vis[next.x][next.y]&&next.x>=0&&next.x<len&&next.y
               >=0&&next.y<len)//判断是否超出棋盘
            {
                next.step=now.step+1;
                q.push(next);
                vis[next.x][next.y]=1;
                if(next.x==en_x&&next.y==en_y)
                {
                    printf("%d\n",next.step);
                    return;
                }
            }
        }
    }
    return;
}
int main()
{
    int n;
    scanf("%d",&n);
    while(n--)
    {
        scanf("%d",&len);
        scanf("%d%d",&st_x,&st_y);
        scanf("%d%d",&en_x,&en_y);
        if(st_x==en_x&&st_x==en_y)
        {
            printf("0\n");
            continue;
        }
        else
            bfs();
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值