博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1372Knight Moves
阅读量:4636 次
发布时间:2019-06-09

本文共 2567 字,大约阅读时间需要 8 分钟。

E - Knight Moves
Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
     

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 e4a1 b2b2 c3a1 h8a1 h7h8 a1b1 c3f6 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.

#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int startx,starty,endx,endy;char a[3],c[3];int b[100][100];int dir[8][2]= {1,2,2,1,2,-1,1,-2,-1,-2,-2,-1,-2,1,-1,2};//往八个方向搜struct node{ int x,y,step;};void bfs(int x,int y){ node st,ed; memset(b,0,sizeof(b)); queue
q; st.x=x; st.y=y; st.step=0; b[st.x][st.y]=1; q.push(st); while(!q.empty()) { st=q.front(); q.pop(); if(st.x==endx&&st.y==endy) { printf("To get from %s to %s takes %d knight moves.\n",a,c,st.step); return; } for(int k=0; k<8; k++) { ed.x=st.x+dir[k][0]; ed.y=st.y+dir[k][1]; if(ed.x>=1&&ed.x<=8&&ed.y>=1&&ed.y<=8&&!b[ed.x][ed.y]) { b[ed.x][ed.y]=1; ed.step=st.step+1; q.push(ed); } } }}int main(){ while(~scanf("%s%s",a,c)) { startx=a[0]-'a'+1;//把字母转化为数字模拟地图 starty=a[1]-'0'; endx=c[0]-'a'+1; endy=c[1]-'0'; bfs(startx,starty); } return 0;}



转载于:https://www.cnblogs.com/nyist-xsk/p/7264916.html

你可能感兴趣的文章
[转]深入理解linux内核list_head
查看>>
百度富文本编辑器的应用技巧---在一个页面中使用多个样式不同功能不同的编辑器...
查看>>
windows mysqldump 不成功 1049 1064 报错
查看>>
js call(),apply(),对象冒充,改变变量作用域
查看>>
查看符号表
查看>>
web安全测试-AppScan使用分享
查看>>
Javascipt数组去重的几种方式
查看>>
磁盘结构简介
查看>>
组织机构sql
查看>>
Girls' Day POJ 1677 模拟
查看>>
[BZOJ 3236] [Ahoi2013] 作业 && [BZOJ 3809] 【莫队(+分块)】
查看>>
image to pdf
查看>>
UIElementImageShot
查看>>
Selenium介绍
查看>>
HDU 6071 Lazy Running
查看>>
LINQ to JavaScript
查看>>
SqlServer 的IDENTITY_INSERT设置为OFF问题
查看>>
uploadify scriptData参数无法传参的问题
查看>>
atitit.短信 验证码 破解 v3 p34 识别 绕过 系统方案规划----业务相关方案 手机验证码 .doc...
查看>>
J2SE核心实战开发—— 集合类框架
查看>>