博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2386 Lake Counting
阅读量:2251 次
发布时间:2019-05-09

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

Due to recent rains, water has pooled in various places in Farmer John's field, which is represented by a rectangle of N x M (1 <= N <= 100; 1 <= M <= 100) squares. Each square contains either water ('W') or dry land ('.'). Farmer John would like to figure out how many ponds have formed in his field. A pond is a connected set of squares with water in them, where a square is considered adjacent to all eight of its neighbors. 

Given a diagram of Farmer John's field, determine how many ponds he has.

Input

* Line 1: Two space-separated integers: N and M 

* Lines 2..N+1: M characters per line representing one row of Farmer John's field. Each character is either 'W' or '.'. The characters do not have spaces between them.

Output

* Line 1: The number of ponds in Farmer John's field.

Sample Input

10 12W........WW..WWW.....WWW....WW...WW..........WW..........W....W......W...W.W.....WW.W.W.W.....W..W.W......W...W.......W.

Sample Output

3

Hint

OUTPUT DETAILS: 

There are three ponds: one in the upper left, one in the lower left,and one along the right side.

解题思路:

深度优先遍历(或者广度优先遍历)即可,标准思路

#include 
#include
#include
using namespace std;const int MAXN = 110;char theMap[MAXN][MAXN];bool tvisited[MAXN][MAXN];int ans = 0;int N, M;int tx[8] = { 1,-1,1,-1,0,0,-1,1 };int ty[8] = { 0,0,1,1,1,-1,-1,-1 };void dfs_temp(int x, int y) { tvisited[x][y] = true; for (int i = 0; i < 8; ++i) { int newx = x + tx[i]; int newy = y + ty[i]; if (newx >= 0 && newx < N && newy >= 0 && newy < M && !tvisited[newx][newy] && theMap[newx][newy] != '.') { dfs_temp(newx, newy); } }}int main() { fill(tvisited[0], tvisited[0] + MAXN*MAXN, false); cin >> N >> M; for (int i = 0; i < N; ++i) { for (int j = 0; j < M; ++j) { cin >> theMap[i][j]; } } for (int i = 0; i < N; ++i) { for (int j = 0; j < M; ++j) { if (!tvisited[i][j] && theMap[i][j] != '.') { dfs_temp(i, j); ans++; } } } cout << ans << endl; system("PAUSE"); return 0;}

 

转载地址:http://ynxdb.baihongyu.com/

你可能感兴趣的文章
【托业】【新东方托业全真模拟】TEST07~08-----P5~6
查看>>
solver及其配置
查看>>
JAVA多线程之volatile 与 synchronized 的比较
查看>>
Java集合框架知识梳理
查看>>
笔试题(一)—— java基础
查看>>
Redis学习笔记(三)—— 使用redis客户端连接windows和linux下的redis并解决无法连接redis的问题
查看>>
Intellij IDEA使用(一)—— 安装Intellij IDEA(ideaIU-2017.2.3)并完成Intellij IDEA的简单配置
查看>>
Intellij IDEA使用(二)—— 在Intellij IDEA中配置JDK(SDK)
查看>>
Intellij IDEA使用(三)——在Intellij IDEA中配置Tomcat服务器
查看>>
Intellij IDEA使用(四)—— 使用Intellij IDEA创建静态的web(HTML)项目
查看>>
Intellij IDEA使用(五)—— Intellij IDEA在使用中的一些其他常用功能或常用配置收集
查看>>
Intellij IDEA使用(六)—— 使用Intellij IDEA创建Java项目并配置jar包
查看>>
Eclipse使用(十)—— 使用Eclipse创建简单的Maven Java项目
查看>>
Eclipse使用(十一)—— 使用Eclipse创建简单的Maven JavaWeb项目
查看>>
Intellij IDEA使用(十三)—— 在Intellij IDEA中配置Maven
查看>>
面试题 —— 关于main方法的十个面试题
查看>>
集成测试(一)—— 使用PHP页面请求Spring项目的Java接口数据
查看>>
PHP项目用xhprof性能分析(安装及应用实例)
查看>>
Oracle PL/SQL语言初级教程之过程和函数
查看>>
Oracle PL/SQL语言初级教程之表和视图
查看>>