Maze Exploration(dfs)

Maze ExplorationA maze of rectangular rooms is represented on a two dimensional grid as illustrated in figure 1a. Each point of the grid is represented by a character. The points of room walls are marked by the same character which can be any printable character different than `*’, `_’ and space. In figure 1 this character is `X’. All the other points of the grid are marked by spaces. XXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXX X X X X X X X###X###X###X X X X X X X X###########X X X X X X X X X X###X###X###X X X XXXXXX XXX XXXXXXXXXX XXXXXX#XXX#XXXXXXXXXX X X X X X X X X###X###X###X###X X X * X X X###############X X X X X X X X X###X###X###X###X XXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXa) Initial maze b) Painted mazeFigure 1. Mazes of rectangular roomsAll rooms of the maze are equal sized with all walls 3 points wide and 1 point thick as illustrated in figure 2. In addition, a wall is shared on its full length by the separated rooms. The rooms can communicate through doors, which are positioned in the middle of walls. There are no outdoor doors. door | XX XX X . X measured from within the room door – …– walls are 3 points wide X . X__ XXXXX | |___ walls are one point thickFigure 2. A room with 3 doorsYour problem is to paint all rooms of a maze which can be visited starting from a given room, called the `start room’ which is marked by a star (`*’) positioned in the middle of the room. A room can be visited from another room if there is a door on the wall which separates the rooms. By convention, a room is painted if its entire surface, including the doors, is marked by the character `#’ as shown in figure 1b.InputThe program input is a text file structured as follows:1.The first line contains a positive integer which shows the number of mazes to be painted.2.The rest of the file contains the mazes.The lines of the input file can be of different length. The text which represents a maze is terminated by a separation line full of underscores (`_’). There are at most 30 lines and at most 80 characters in a line for each mazeThe program reads the mazes from the input file, paints them and writes the painted mazes on the standard output.OutputThe output text of a painted maze has the same format as that which has been read for that maze, including the separation lines. The example below illustrates a simple input which contains a single maze and the corresponding output.Sample Input2XXXXXXXXXX X XX * XX X XXXXXXXXXXX XX XX XXXXXX_____XXXXXX XX * XX XXXXXX_____Sample OutputXXXXXXXXXX###X###XX#######XX###X###XXXXXXXXXXX XX XX XXXXXX_____XXXXXX###XX###XX###XXXXXX_____

题意:从“*”出发,讲能走到的空白处填满“#”

PS:情人节第一发,sad,wa10次,少了个等号,,不知道为啥。sadddddd。难道是哪没想到?糊里糊涂的。

相信成功的信念比成功本身更重要,

Maze Exploration(dfs)

相关文章:

你感兴趣的文章:

标签云: