【poj 2386】Lake Counting
2018-06-17 21:51:49来源:未知 阅读 ()
Description
Given a diagram of Farmer John's field, determine how many ponds he has.
Input
* 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
Sample Input
10 12 W........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
There are three ponds: one in the upper left, one in the lower left,and one along the right side.
1 #include<cstdio> 2 #include<algorithm> 3 #include<cstring> 4 #include<iostream> 5 using namespace std; 6 int n,m;char map[105][105]; 7 void dfs(int i,int j){ 8 map[i][j]='.'; 9 for(int dx=-1;dx<=1;dx++) 10 for(int dy=-1;dy<=1;dy++){ 11 int nx=i+dx,ny=j+dy; 12 if(nx>=0&&nx<n&&ny>=0&&ny<m&&map[nx][ny]=='W') dfs(nx,ny); 13 } 14 return ; 15 } 16 int main(){ 17 ios::sync_with_stdio(false); 18 cin>>n>>m; 19 for(int i=0;i<n;i++) for(int j=0;j<m;j++) cin>>map[i][j]; 20 int ans=0; 21 for(int i=0;i<n;i++) 22 for(int j=0;j<m;j++){ 23 if(map[i][j]=='W'){ 24 dfs(i,j); 25 ans++; 26 } 27 } 28 printf("%d\n",ans); 29 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:C++11 新知识点
- POJ-3278 2020-04-01
- Asteroids!_poj2225 2020-02-09
- poj-1753题题解思路 2020-01-26
- POJ1852 2019-11-11
- POJ2431 优先队列+贪心 - biaobiao88 2019-11-03
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash