Poj 1915 Knight Moves, pojknight

Source: Internet
Author: User
Tags integer numbers

Poj 1915 Knight Moves, pojknight
Knight Moves

Time Limit:1000 MS   Memory Limit:30000 K
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

380 07 01000 030 50101 11 1

Sample Output

5280

Source

TUD Programming Contest 2001, Darmstadt, Germany note: 1. The subscript of the Data starts from 0. 2. Note that the vis array must be set to 0 each time.
 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 node16 {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 }

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.