Poj 1915 knight moves

Source: Internet
Author: User
Tags integer numbers
Knight moves

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

Code:

#include <cstdio>#include <cstring>#include <queue>using namespace std;struct point{int x;int y;int step;}p, pp;int d[8][2] = { { -2, 1 }, { -1, 2 }, { 1, 2 }, { 2, 1 }, { -2, -1 }, { -1, -2 }, { 1, -2 }, { 2, -1 } };int x_1, y_1, x_2, y_2, l;int vis[500][500];queue<point>s;bool isok(int x, int y){if (x >= 0 && x < l&&y >= 0 && y < l)return true;return false;}int bfs(){if (x_1 == x_2&&y_1 == y_2)return 0;while (!s.empty())s.pop();p.x = x_1, p.y = y_1;p.step = 0;s.push(p);vis[x_1][y_1] = 1;while (!s.empty()){p = s.front();s.pop();if (p.x == x_2&&p.y == y_2)return p.step;for (int i = 0; i < 8; i++){int xx = p.x + d[i][0];int yy = p.y + d[i][1];if (isok(xx, yy) && !vis[xx][yy]){vis[xx][yy] = 1;pp.x = xx, pp.y = yy;pp.step = p.step + 1;s.push(pp);}}}}int main(){int t;scanf("%d", &t);while (t--){scanf("%d", &l);scanf("%d%d", &x_1, &y_1);scanf("%d%d", &x_2, &y_2);memset(vis, 0, sizeof(vis));printf("%d\n", bfs());}return 0;}



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.