poj 1915 Knight Moves
2018-06-17 22:40:48来源:未知 阅读 ()
Time Limit: 1000MS | Memory Limit: 30000K | |
Total Submissions: 26061 | Accepted: 12287 |
Description
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
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
Sample Input
3 8 0 0 7 0 100 0 0 30 50 10 1 1 1 1
Sample Output
5 28 0
Source
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 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:AOJ/堆与动态规划习题集
下一篇:POJ 3461 kmp
- POJ-3278 2020-04-01
- Asteroids!_poj2225 2020-02-09
- poj-1753题题解思路 2020-01-26
- POJ1852 2019-11-11
- POJ2431 优先队列+贪心 - biaobiao88 2019-11-03
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash