HDU1240 Asteroids BFS

               
Problem Description
You're in space.
You want to get home.
There are asteroids.
You don't 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,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 1O0 0 00 0 0ENDSTART 3XXXXXXXXXOOOOOOOOOXXXXXXXXX0 0 12 2 1ENDSTART 5OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOXXXXXXXXXXXXXXXXXXXXXXXXXOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO0 0 04 4 4END
 

Sample Output
 
   
1 03 4NO ROUTE
 


 

尼玛,看题意就看了半天,果然英语太差了 T_T

题意,给出一个N,这是这个三空间的大小,然后给出所有面的状况O为空地,X为墙,再给出起始点的三维坐标和终点的坐标,输出到达的步数

思路:跟HDU1253题胜利大逃亡一个意思,稍微进行下修改就可以了

#include <string.h>#include <stdio.h>#include <queue>using namespace std;char map[20][20][20];int vis[20][20][20];int n;int sx,sy,sz;int ex,ey,ez;int tx[] = {1,-1,0,0,0,0};int ty[] = {0,0,1,-1,0,0};int tz[] = {0,0,0,0,1,-1};struct node{    int x,y,z,step;};int check(int x,int y,int z){    if(x<0 || y<0 || z<0 || x>=n || y>=n || z>=n || vis[x][y][z] )    return 0;    return 1;}int bfs(int x,int y,int z){    int i;    queue<node> Q;    node a,next;    a.x = x;    a.y = y;    a.z = z;    a.step = 0;    vis[x][y][z] = 1;    Q.push(a);    while(!Q.empty())    {        a = Q.front();        Q.pop();        if(a.x == ex && a.y == ey && a.z == ez)        return a.step;        for(i = 0;i<6;i++)        {            next = a;            next.x+=tx[i];            next.y+=ty[i];            next.z+=tz[i];            if(check(next.x,next.y,next.z))            {                next.step++;                vis[next.x][next.y][next.z] = 1;                Q.push(next);            }        }    }    return -1;}int main(){    char s[10];    int i,j,k;    while(~scanf("%s%d",s,&n))    {        for(i = 0;i<n;i++)        for(j = 0;j<n;j++)        scanf("%s",map[i][j]);        scanf("%d%d%d%d%d%d",&sx,&sy,&sz,&ex,&ey,&ez);        scanf("%s",s);        int ans = bfs(sx,sy,sz);        if(ans>=0)        printf("%d %d\n",n,ans);        else        printf("NO ROUTE\n");    }    return 0;}


 

           

猜你喜欢

转载自blog.csdn.net/qq_44919369/article/details/89785968
今日推荐