前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >poj 1915 Knight Moves

poj 1915 Knight Moves

作者头像
attack
发布2018-04-13 14:56:28
3930
发布2018-04-13 14:56:28
举报

Knight Moves

Time Limit: 1000MS

Memory Limit: 30000K

Total Submissions: 26061

Accepted: 12287

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

代码语言:javascript
复制
3
8
0 0
7 0
100
0 0
30 50
10
1 1
1 1

Sample Output

代码语言:javascript
复制
5
28
0

Source

TUD Programming Contest 2001, Darmstadt, Germany

注意:1.数据的下标是从0开始的

   2.注意vis数组每次要置0

代码语言:javascript
复制
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<queue>
 5 #include<cstdlib>
 6 using namespace std;
 7 const int MAXN=1001;
 8 int vis[MAXN][MAXN];
 9 int map[MAXN][MAXN];
10 int n;
11 int bgx,bgy;
12 int edx,edy;
13 int xx[9]={-1,-2,-2,-1,+1,+2,+2,+1};
14 int yy[9]={-2,-1,+1,+2,-2,-1,+1,+2};
15 struct node
16 {
17     int x;
18     int y;
19     int step;
20 };
21 void bfs(int bgx,int bgy)
22 {
23     queue<node>q;
24     node cur;
25     cur.x=bgx;cur.y=bgy;cur.step=0;
26     q.push(cur);
27     vis[cur.x][cur.y]=1;
28     while(q.size()!=0)
29     {
30         cur=q.front();
31         q.pop();
32         if(cur.x==edx&&cur.y==edy)
33         {
34             printf("%d\n",cur.step); 
35             return ;
36         } 
37         for(int i=0;i<8;i++)
38         {
39             node nxt;
40             nxt.x=cur.x+xx[i];
41             nxt.y=cur.y+yy[i];
42             nxt.step=cur.step+1;
43             if(vis[nxt.x][nxt.y]==0&&nxt.x>=0&&nxt.x<n&&nxt.y>=0&&nxt.y<n)
44                 q.push(nxt),vis[nxt.x][nxt.y]=1;
45         }
46     }
47 }
48 int main()
49 {
50     int T;
51     scanf("%d",&T);
52     for(int i=1;i<=T;i++)
53     {
54         memset(vis,0,sizeof(vis));
55         scanf("%d",&n);
56         scanf("%d%d%d%d",&bgx,&bgy,&edx,&edy);
57         bfs(bgx,bgy);
58     }
59     return 0;
60 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-05-04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档