UVA - 784 Maze Exploration (简单dfs)

本文探讨了深度学习在图像处理领域的应用,包括AR特效、图像处理、音视频直播等场景,展示了深度学习如何通过复杂的神经网络模型实现图像识别、编辑、合成等功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


  Maze Exploration 

A 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             XXXXXXXXXXXXXXXXXXXXX
a) Initial maze                    b) Painted maze

Figure 1. Mazes of rectangular rooms

All 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 thick
Figure 2. A room with 3 doors

Your 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.

Input 

The 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 maze

The program reads the mazes from the input file, paints them and writes the painted mazes on the standard output.

Output 

The 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 Input 

2
XXXXXXXXX
X   X   X
X *     X
X   X   X
XXXXXXXXX
X   X
X   X
X   X
XXXXX
_____
XXXXX
X   X
X * X
X   X
XXXXX
_____

Sample Output 

XXXXXXXXX
X###X###X
X#######X
X###X###X
XXXXXXXXX
X   X
X   X
X   X
XXXXX
_____
XXXXX
X###X
X###X
X###X
XXXXX
_____


题目大意:

染色问题,从'*'开始向外扩散,如果遇到' ',就染色为'#'。

解析:

直接用DFS解决。

#include <iostream>
#include <stdio.h>
#include <string>
using namespace std;
const int dr[] = {-1 , 0 , 1 , 0};
const int dc[] = {0 , 1 , 0 , -1};
const int MAX = 100;
string grid[MAX];
int cnt;
void dfs(int r,int c) {
	if(r < 0 || r >= cnt || c < 0 || c >= grid[r].size()) { //越界
		return ;
	}
	if(grid[r][c] == ' ') {
		grid[r][c] = '#';
		for(int i = 0; i < 4; i++) {
			dfs(r + dr[i],c + dc[i]);
		}
	}
}
int main () {
	int t;
	while(cin >> t) {
		getchar();
		while( t-- ) {
			for(cnt = 0; cnt < MAX; cnt++) {
				getline(cin,grid[cnt]);
				if(grid[cnt][0] == '_') {
					cnt++;
					break;
				}
			}
			for(int i = 0; i < cnt; i++) {
				for(int j = 0; j < grid[i].size(); j++) {
					if(grid[i][j] == '*') {
						grid[i][j] = ' ';
						dfs(i,j);
					}
				}
			}
			for(int i = 0; i < cnt; i++) {
				cout<<grid[i]<<endl;
			}
		}
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值