码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1372 Knight Moves

时间:2014-11-19 20:22:47      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   color   os   sp   

Knight Moves

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 6970    Accepted Submission(s): 4209


Problem Description
A friend of you is doing research on the Traveling Knight Problem (TKP) where you are to find the shortest closed tour of knight moves that visits each square of a given set of n squares on a chessboard exactly once. He thinks that the most difficult part of the problem is determining the smallest number of knight moves between two given squares and that, once you have accomplished this, finding the tour would be easy.
Of course you know that it is vice versa. So you offer him to write a program that solves the "difficult" part. 

Your job is to write a program that takes two squares a and b as input and then determines the number of knight moves on a shortest route from a to b. 
 

 

Input
The input file will contain one or more test cases. Each test case consists of one line containing two squares separated by one space. A square is a string consisting of a letter (a-h) representing the column and a digit (1-8) representing the row on the chessboard. 
 

 

Output
For each test case, print one line saying "To get from xx to yy takes n knight moves.". 
 

 

Sample Input
e2 e4 a1 b2 b2 c3 a1 h8 a1 h7 h8 a1 b1 c3 f6 f6
 

 

Sample Output
To get from e2 to e4 takes 2 knight moves. To get from a1 to b2 takes 4 knight moves. To get from b2 to c3 takes 2 knight moves. To get from a1 to h8 takes 6 knight moves. To get from a1 to h7 takes 5 knight moves. To get from h8 to a1 takes 6 knight moves. To get from b1 to c3 takes 1 knight moves. To get from f6 to f6 takes 0 knight moves.
 

 

Source
 
bubuko.com,布布扣
 1 #include<iostream>
 2 #include<queue>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<cstdlib>
 6 using namespace std;
 7 int x1,x2,y1,y2;
 8 int dir[8][2]={{-1,2},{-1,-2},{1,2},{1,-2},{-2,1},{-2,-1},{2,1},{2,-1}};
 9 int map[10][10];
10 struct ln{
11     int x;
12     int y;
13     int t;
14 }abc,q;
15 
16 int border(int x,int y)
17 {
18     if( (x>=1&&x<=8) && (y>=1&&y<=8) &&(map[x][y]==0) )
19     return 1;
20     return 0;
21 }
22 
23 int bfs(int x,int y)
24 {
25     int i;
26     queue<struct ln>p;
27     abc.x=x;
28     abc.y=y;
29     abc.t=0;
30     map[abc.x][abc.y]=1;
31     p.push(abc);
32     while(!p.empty())
33     {
34         abc=p.front();
35         p.pop();
36         if(abc.x==x2&&abc.y==y2)
37         {
38             return abc.t;
39             break;
40         }
41         for(i=0;i<8;i++)
42         {
43             q.x=abc.x+dir[i][0];
44             q.y=abc.y+dir[i][1];
45             if(border(q.x,q.y))
46             {
47                 q.t=abc.t+1;
48                 p.push(q);
49                 map[q.x][q.y]=1;
50             }
51         }
52     }
53     return 0;
54 }
55 int main()
56 {
57     //freopen("in.txt","r",stdin);
58     char n,m;
59     while(~scanf("%c%d %c%d",&n,&y1,&m,&y2))
60     {
61         getchar();
62         int count=0;
63         memset(map,0,sizeof(map));
64         x1=n-a+1;
65         x2=m-a+1;
66         count=bfs(x1,y1);
67         printf("To get from %c%d to %c%d takes %d knight moves.\n",n,y1,m,y2,count);
68 
69     }
70     return 0;
71 }
View Code

 

 

 

hdu 1372 Knight Moves

标签:des   style   blog   http   io   ar   color   os   sp   

原文地址:http://www.cnblogs.com/xuesen1995/p/4108920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!