coordinates of your target's position. The coordinate values will be integers separated by individual spaces.
End line - A single line, END
The origin of the coordinate system is <0,0,0>. Therefore, each component of each coordinate vector will be an integer between 0 and N-1, inclusive.
The first coordinate in a set indicates the column. Left column = 0.
The second coordinate in a set indicates the row. Top row = 0.
The third coordinate in a set indicates the slice. First slice = 0.
Both the Starting Position and the Target Position will be in empty space.
Output For each data set, there will be exactly one output set, and there will be no blank lines separating output sets.
A single output set consists of a single line. If a route exists, the line will be in the format X Y, where X is the same as N from the corresponding input data set and Y is the least number of moves necessary to get your ship from the starting position to the target position. If there is no route from the starting position to the target position, the line will be NO ROUTE instead.
A move can only be in one of the six basic directions: up, down, left, right, forward, back. Phrased more precisely, a move will either increment or decrement a single component of your current position vector by 1.
Sample Input
START 1
O
0 0 0
0 0 0
END
START 3
XXX
XXX
XXX
OOO
OOO
OOO
XXX
XXX
XXX
0 0 1
2 2 1
END
START 5
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
XXXXX
XXXXX
XXXXX
XXXXX
XXXXX
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
OOOOO
0 0 0
4 4 4
END
Sample Output
1 0
3 4
NO ROUTE
Source South Central USA 2001
?
题意:一个三维的空间,从一个点到另一个点的最少步数。
题解;BFS模板,主要是要注意坐标的处理。
AC代码:
?
#include
#include
#include
#include
#define N 15 using namespace std; char chess[N][N][N]; string str; int n,sx,sy,sz,ex,ey,ez,visit[N][N][N]; int dir[][3]={ {0,0,1},{0,0,-1},{1,0,0}, {-1,0,0},{0,1,0},{0,-1,0} }; struct Node{ int x,y,z,s; }; bool ok(int x,int y,int z){ if(x>=0&&x
=0&&y
=0&&z
q; Node head={sx,sy,sz,0}; q.push(head); memset(visit,-1,sizeof(visit)); visit[sx][sy][sz]=0; while(q.size()){ Node f=q.front(); if(f.x==ex&&f.y==ey&&f.z==ez)return f.s; q.pop(); for(int i=0;i<6;i++){ int dx=f.x+dir[i][0],dy=f.y+dir[i][1],dz=f.z+dir[i][2]; if(ok(dx,dy,dz)&&visit[dx][dy][dz]){ visit[dx][dy][dz]=0; Node t={dx,dy,dz,f.s+1}; q.push(t); } } } return -1; } int main() { while(cin>>str>>n){ for(int i=0;i
>chess[k][j][i]; cin>>sx>>sy>>sz>>ex>>ey>>ez; cin>>str; int tmp=bfs(); if(tmp!=-1)cout<
【转载请注明出处】
?
作者:MummyDing
出处:http://blog.csdn.net/mummyding
?
?