博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1915 Knight Moves [BFS]
阅读量:5368 次
发布时间:2019-06-15

本文共 2521 字,大约阅读时间需要 8 分钟。

Knight Moves
Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 26844   Accepted: 12663

Description

Background  Mr Somurolov, fabulous chess-gamer indeed, asserts that no one else but him can move knights from one position to another so fast. Can you beat him? 
The Problem  Your task is to write a program to calculate the minimum number of moves needed for a knight to reach one point from another, so that you have the chance to be faster than Somurolov.  For people not familiar with chess, the possible knight moves are shown in Figure 1. 

Input

The input begins with the number n of scenarios on a single line by itself.  Next follow n scenarios. Each scenario consists of three lines containing integer numbers. The first line specifies the length l of a side of the chess board (4 <= l <= 300). The entire board has size l * l. The second and third line contain pair of integers {0, ..., l-1}*{0, ..., l-1} specifying the starting and ending position of the knight on the board. The integers are separated by a single blank. You can assume that the positions are valid positions on the chess board of that scenario.

Output

For each scenario of the input you have to calculate the minimal amount of knight moves which are necessary to move from the starting point to the ending point. If starting point and ending point are equal,distance is zero. The distance must be written on a single line.

Sample Input

380 07 01000 030 50101 11 1

Sample Output

5280

Source

, Darmstadt, Germany
 
题目大意:题目讲了knight的走法(和象棋中马一样),一共有八个方向可以走。给定棋盘的大小,knight的初始坐标和所要到达的终点坐标,求出knight所需要的最小步数。
 
大致思路:经典的bfs,通常用队列(先进先出,FIFO)实现

初始化队列Q.  Q={起点s};

标记s为己访问;

 while (Q非空)

{

    取Q队首元素u; u出队;   if (u == 目标状态)

  {…}   

  所有与u相邻且未被访问的点进入队列;   标记u为已访问;

}

用bfs从起始点每次遍历八个方向到终点结束,详见代码。

 

#include
#include
#include
#include
#include
#include
using namespace std;int n,sx,sy,tx,ty;int m[305][305];struct pos//定义一个结构体包含坐标和步数{ int x; int y; int num;};int d[8][2]={-2,1,-1,2,1,2,2,1,2,-1,1,-2,-1,-2,-2,-1};//knight可以走八个方向void bfs(int x,int y){ pos a,b; queue
q; a.x=x; a.y=y; a.num=0; memset(m,0,sizeof(m)); m[a.x][a.y]=1;//把起始点标记为走过,记为1 q.push(a);//起点入队 while(!q.empty())//当队列不为空 { a=q.front();//取队列中第一个元素 q.pop();//当前第一个元素出队 if(a.x==tx&&a.y==ty)//如果到终点了 输出步数 { cout<
<
=0&&a.x+d[i][0]
=0&&a.y+d[i][1]
>T; while(T--) { cin>>n; cin>>sx>>sy; cin>>tx>>ty; bfs(sx,sy); } return 0;}

 

 

转载于:https://www.cnblogs.com/FTA-Macro/p/7266311.html

你可能感兴趣的文章
24.函数信号机制(本质上就是函数指针)
查看>>
The dependency `xxx` is not used in any concrete target.
查看>>
Linux删除命令
查看>>
4 jquery中dom操作和事件的实例学习-访yahoo邮箱登录框的提示效果
查看>>
c# dotNetBar symbol属性代码动态设置方法
查看>>
Jq获取页面元素的位置
查看>>
sqlserver中表变量和变量表之间区别
查看>>
树状数组题单
查看>>
解惑:学.Net还是学Java?
查看>>
【课程11】文件的读写
查看>>
一款DIY移动电源的性能
查看>>
函数递归与二分法
查看>>
struts2标签
查看>>
Git最佳实践
查看>>
strlen判断字符串长度要注意的事项
查看>>
javascript高级程序设计--第三章
查看>>
react之路:使用redux-immutable
查看>>
python---网络爬虫01
查看>>
Qt第一个小程序(使用vs2017开发)
查看>>
有用的工具平台收集(不断更新中)
查看>>