【POJ2386】Lake Counting
【摘要】
problem
solution
codes
//DFS 求通块
#include<iostream>
#include<string>
using namespace st...
problem
solution
codes
//DFS 求通块
#include<iostream>
#include<string>
using namespace std;
int n, m, ans;
string a[100];
void dfs(int x, int y){
for(int i = -1; i <= 1; i++)
for(int j = -1; j <= 1; j++)
if(x+i>=0&&x+i<n&&y+j>=0&&y+j<m && a[x+i][y+j]=='W')
{ a[x+i][y+j]='.'; dfs(x+i, y+j);}
}
int main(){
cin>>n>>m;
cin.get();
for(int i = 0; i < n; i++)getline(cin, a[i]);
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
if(a[i][j] == 'W'){ dfs(i, j); ans++;}
cout<<ans<<"\n";
return 0;
}
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/80461107
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)