博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ 1312题Red and Black
阅读量:4931 次
发布时间:2019-06-11

本文共 2471 字,大约阅读时间需要 8 分钟。

Red and Black

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 13508 Accepted Submission(s): 8375

Problem Description

There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent tiles. But he can’t move on red tiles, he can move only on black tiles.

Write a program to count the number of black tiles which he can reach by repeating the moves described above.

Input

The input consists of multiple data sets. A data set starts with a line containing two positive integers W and H; W and H are the numbers of tiles in the x- and y- directions, respectively. W and H are not more than 20.

There are H more lines in the data set, each of which includes W characters. Each character represents the color of a tile as follows.

‘.’ - a black tile

‘#’ - a red tile
‘@’ - a man on a black tile(appears exactly once in a data set)

Output

For each data set, your program should output a line which contains the number of tiles he can reach from the initial tile (including itself).

Sample Input

6 9
….#.
…..#
……
……
……
……
……

@…

.#..#.

11 9
.#………
.#.#######.
.#.#…..#.
.#.#.###.#.
.#.#..@#.#.
.#.#####.#.
.#…….#.
.#########.
………..
11 6
..#..#..#..
..#..#..#..
..#..#..###
..#..#..#@.
..#..#..#..
..#..#..#..
7 7
..#.#..
..#.#..

.

…@…

.

..#.#..

..#.#..
0 0

Sample Output

45
59
6
13

题意:

n*m的方阵有红格或是黑格,只能走黑格
每次只能走上下左右四个紧邻方向的格子,求
这个人最后能走多少个黑格子。

分析:

dfs水题。从第一个黑格子开始递归的搜索,
每次搜索一个黑格子后为了以后不再重复走
这个黑格子,就把当前搜索的这个黑格子换
成红格子,然后继续dfs。。。

题目链接:;

题目大意:一个长方形空间,上面铺红色和黑色瓦片,一个人起初站在黑色瓦片上,每次可以走到相邻的4个黑色瓦片上,输入数据,求其能走过多少瓦片
题意:某人在@处为起点(也包括@点)#为墙,点(.)为通路,问最多能走多远统计能走几个点(加上@这个点)
思路:用dfs;
代码:

#include 
#include
#include
char a[30][30];int ss,n,m;//这3个值需要用全局变量int b[4][2]= {
{
0,-1},{
0,1},{
1,0},{-1,0}};int dfs(int x,int y){ int xx,yy; if(x<0||y<0||x>=m||y>=n) return 0; int i; for(i=0; i<4; i++) { xx=x+b[i][0]; yy=y+b[i][1]; if(xx<0||yy<0||xx>=m||yy>=n||a[xx][yy]=='#') //检查该点上下左右的点是否符合题目要求。 continue; ss++; a[xx][yy]='#'; //如果该点已经检查过,就把它变成'#',防止再次被检查。 dfs(xx,yy); }}int main(){ while(~scanf("%d%d",&n,&m)&&(n||m))//n,m不能同时为0 { int i,j; int pi,pj; getchar();//吸收换行符。 for(i=0; i

转载于:https://www.cnblogs.com/webmen/p/5739726.html

你可能感兴趣的文章
(180905)如何通过梯度下降法降低损失----Google机器学习速成课程笔记
查看>>
(响应式PC端媒体查询)电脑屏幕分辨率尺寸大全
查看>>
LDAP1-安装部署LDAP服务
查看>>
Crystal Reports拉报表报错:Error detected by database DLL
查看>>
border-radius讲解1
查看>>
CLR via C#学习笔记-第九章-参数和返回类型的设计规范
查看>>
dom4j解析XML文件(3)—XML文件写入
查看>>
vi作者:Bill Joy
查看>>
自定义分享功能
查看>>
基于Attribute的Web API路由设置
查看>>
use sql trigger call java function
查看>>
Unity 新老版本动画文件设置
查看>>
关于win7 下双击不能打开jar 文件
查看>>
学习进度(2016.5.29)
查看>>
Visual studio 创建项目失败vstemplate
查看>>
keras 上添加 roc auc指标
查看>>
Linux命令(二)关机重启
查看>>
[OpeCV] highgui头文件
查看>>
C# 获取远程图片
查看>>
Android——MaterialDesign之一Toolbar
查看>>