///////////////////////////////////////////////////////////////////////////////////////////////////////
作者:tt2767
声明:本文遵循以下协议自由转载-非商用-非衍生-保持署名|Creative Commons BY-NC-ND 3.0
查看本文更新与讨论请点击:http://blog.csdn.net/tt2767
链接被删请百度: CSDN tt2767
///////////////////////////////////////////////////////////////////////////////////////////////////////
这题刚开始没想明白,后来去网上搜了下,看到第一句话就懂了,“直接搜索就好了”,这题看起来没有顺序的路径,但其实道理是一样的,每次bfs记录步数就好
#include<sstream>
#include<string>
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include <iterator>
#include<vector>
#include<map>
#include <stack>
#include<queue>
#include<set>
#include <list>
#include<functional>
#include<numeric>
using namespace std;
const long double PI = acos(0.0) * 2.0;
const int INF = 99999;
struct P
{
int x,y;
P(int x = 0 ,int y = 0): x(x),y(y){}
};
int d[9][9];
const int dx[8] = {-2,-2,-1,-1,1,1,2,2};
const int dy[8] = {-1, 1,-2, 2,-2,2,-1,1};
int bfs(P s, P g);
int main()
{
char s1[3],s2[3];
while(scanf("%s%s",s1,s2) == 2)
{
P p1(s1[0]-‘a‘ , s1[1]-‘1‘);
P p2(s2[0]-‘a‘ , s2[1]-‘1‘);
printf("To get from %s to %s takes %d knight moves.\n",s1,s2,bfs(p1,p2));
}
return 0;
}
int bfs(P s, P g)
{
for(int i = 0 ;i <9 ; i++)
for(int j = 0 ; j < 9 ; j++)
d[i][j] = INF;
d[s.x][s.y] = 0;
queue<P> q;
q.push(s);
while(!q.empty())
{
P p = q.front();q.pop();
if(p.x == g.x && p.y == g.y) break;
for(int i = 0 ; i< 8 ; i++)
{
int nx = p.x + dx[i];
int ny = p.y + dy[i];
//printf("%d: %d_%d,,,%d\n",i,nx,ny,d[nx][ny]);
if(0 <= nx && nx < 8 && 0 <= ny && ny <8 && d[nx][ny] == INF)
{
d[nx][ny] = d[p.x][p.y] + 1 ;
q.push(P(nx,ny));
}
}
}
return d[g.x][g.y];
}
版权声明:本文为博主原创文章,允许非商业性转载,转载必须注名作者(CSDN tt2767)与本博客链接:http://blog.csdn.net/tt2767。
原文地址:http://blog.csdn.net/tt2767/article/details/47067905