HDU-1240 (asteroids! BFS

Source: Internet
Author: User
Document directory
  • Problem description
  • Input
  • Output
  • Sample Input
  • Sample output
Asteroids!

Problem 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
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
Individual spaces.

End Line-a single line, "end"

The
Origin of the coordinate system is <0, 0>. Therefore, each
Component of each coordinate vector will be an integer between 0 and
N-1, aggressive.

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,
Line will be in the format "x y", where X is the same as N from
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 ctions: Up, down, left, right, forward,
Back. phrased more precisely, a move will either increment or decrement
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

A simple three-dimensional question should have a simple idea.
The Code is as follows:
#include <cstdio>#include <cstring>#include <cstdlib>#include <queue>using namespace std;char map[15][15][15], hash[15][15][15];int sx, sy, sz, ex, ey, ez;void gchar( char &c ){while( c= getchar(), c!= 'O'&& c!= 'X' ) ;}struct Node{int x, y, z, step;}info;int dir[6][3]= { 1, 0, 0, -1, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 1, 0, 0, -1 };bool BFS( int &ans ){memset( hash, 0, sizeof( hash ) );info.x= sx, info.y= sy, info.z= sz, info.step= 0;hash[sx][sy][sz]= 1;queue< Node >q;q.push( info );while( !q.empty() ){Node pos= q.front();q.pop();if( pos.x== ex&& pos.y== ey&& pos.z== ez ){ans= pos.step;return true;}for( int i= 0; i< 6; ++i ){int x= pos.x+ dir[i][0], y= pos.y+ dir[i][1], z= pos.z+ dir[i][2], step= pos.step+ 1;if( map[x][y][z]== 'O'&& !hash[x][y][z] ){info.x= x, info.y= y, info.z= z, info.step= step;hash[x][y][z]= 1;q.push( info );}}}return false;}int main(){int N, ans;while( scanf( " START %d", &N )!= EOF ){memset( map, 0, sizeof( map ) );for( int k= 1; k<= N; ++k ){for( int i= 1; i<= N; ++i ){for( int j= 1; j<= N; ++j ){gchar( map[k][i][j] );}}}scanf( "%d %d %d %d %d %d", &sy, &sz, &sx, &ey, &ez, &ex );sx+= 1, sy+= 1, sz+= 1, ex+= 1, ey+= 1, ez+= 1;scanf( " END" );if( BFS( ans ) ){printf( "%d %d\n", N, ans );}else{puts( "NO ROUTE" );}}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.