博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 1979(dfs)
阅读量:4326 次
发布时间:2019-06-06

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

Red and Black
Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 29990   Accepted: 16293

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)
The end of the input is indicated by a line consisting of two zeros.

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

4559613 深搜要多练练。
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;int m,n;char graph[25][25];bool vis[25][25];int sx,sy,cnt;int dir[][2] = { { 1,0},{-1,0},{ 0,1},{ 0,-1}};void dfs(int x,int y){ vis[x][y] = true; cnt++; for(int i=0; i<4; i++) { int nextx = x+dir[i][0]; int nexty = y+dir[i][1]; if(nextx<0||nextx>=n||nexty<0||nexty>=m||vis[nextx][nexty]||graph[nextx][nexty]=='#') continue; dfs(nextx,nexty); } return ;}int main(){ while(scanf("%d%d",&m,&n)!=EOF&&n+m) { cnt = 0; for(int i=0; i

 

转载于:https://www.cnblogs.com/liyinggang/p/5573897.html

你可能感兴趣的文章
HttpContext.GetOwinContext().Authentication 报错 解决办法
查看>>
三十七、将背景图分成多份
查看>>
SpringCloud服务提供者
查看>>
apache常用配置
查看>>
JS匿名执行函数
查看>>
关于InputStream类的available()方法
查看>>
六边形架构模式
查看>>
HAOI2007 理想的正方形 单调队列
查看>>
(原创)c#学习笔记04--流程控制04--循环03--for循环
查看>>
从控制台输入一个五位数,计算各个数位之和
查看>>
为Sublime Text 3设置优雅的字体
查看>>
Eclipse使用Jetty(转)
查看>>
vim命令收集(持续中)
查看>>
Zynq -- 启动过程
查看>>
206. Reverse Linked List(LeetCode)
查看>>
day 04 Java并发多线程
查看>>
Java定时任务调度工具Timer Quartz
查看>>
WPF,Silverlight与XAML读书笔记第三十五 - 可视化效果之图像
查看>>
Nginx中location配置[转]
查看>>
编程重点
查看>>