Asteroids!
Time limit:1000 ms
Memory limit:32768kb
64bit Io format:% I64d & % i64u
Description
You're in space.
You want to get home.
There are asteroids.
You don't have want to hit them.
Input
Input to this problem will consist of a (non-empty) series of up to 100 data sets. each data set will be formatted according to the following description, and there will be no blank lines separating data sets.
A single data set has 5 components:
Start line-a single line, "Start N", where 1 <= n <= 10.
Slice list-a series of N slices. Each slice is an N x n matrix representing a horizontal slice through the asteroid field. Each position in the matrix will be one of two values:
'O'-(the letter "oh") empty space
'X'-(upper-case) Asteroid present
Starting position-a single line, "a B c", denoting the <a, B, c> coordinates of your craft's starting position. the coordinate values will be integers separated by individual spaces.
Target Position-a single line, "d e f", denoting the <D, E, F> 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>. Therefore, each component of each coordinate vector will be an integer between 0 and N-1, fully passive.
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 1O0 0 00 0 0ENDSTART 3XXXXXXXXXOOOOOOOOOXXXXXXXXX0 0 12 2 1ENDSTART 5OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOXXXXXXXXXXXXXXXXXXXXXXXXXOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO0 0 04 4 4END
Sample output
1 03 4NO ROUTE
Question:
X represents the wall and cannot go. If you can go out, the number of output steps. Otherwise, the output is "No route ".
Solution:
3D BFS regards the jump as the vertical and vertical beats of 3D coordinate z.
Code:
#include<iostream>#include<cstdio>#include<string>#include<cstring>#include<queue>#define N 15using namespace std;struct node{ int i,j,k; node(int i0=0,int j0=0,int k0=0){ i=i0;j=j0;k=k0; }};int directionJ[6]={1,0,-1, 0,0, 0},ie,je,ke;int directionI[6]={0,1, 0,-1,0, 0},step[N][N][N];int directionK[6]={0,0, 0, 0,1,-1},n;bool ans;string str[N*N][N];queue <node> path;void bfs(node s){ if(s.i==ie&&s.j==je&&s.k==ke) {ans=true;return;} for(int i=0;i<6;i++){ int di=s.i+directionI[i],dj=s.j+directionJ[i],dk=s.k+directionK[i]; if(di>=0&&di<n&&dj>=0&&dj<n&&dk>=0&&dk<n){ if(str[dk][di][dj]!='X'&&step[dk][di][dj]==-1){ path.push(node(di,dj,dk)); step[dk][di][dj]=step[s.k][s.i][s.j]+1; } } } if(!path.empty()) path.pop(); if(path.empty()) return; bfs(path.front());}int main(){ char tmpstr[10]; while(scanf("%s%d",tmpstr,&n)!=EOF){ int is,js,ks; ans=false; memset(step,-1,sizeof(step)); while(!path.empty()) path.pop(); for(int k=0;k<n;k++){ for(int i=0;i<n;i++){ cin>>str[k][i]; } } scanf("%d%d%d%d%d%d\n%s",&is,&js,&ks,&ie,&je,&ke,tmpstr); path.push(node(is,js,ks)); step[ks][is][js]=0; bfs(path.front()); if(!ans) printf("NO ROUTE\n"); else printf("%d %d\n",n,step[ke][ie][je]); } return 0;}
HDU 2225 asteroids! (3D BFS)