mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 2386.cpp
This commit is contained in:
parent
7cbbf20a18
commit
c743f823db
44
POJ/2386.cpp
Normal file
44
POJ/2386.cpp
Normal file
|
@ -0,0 +1,44 @@
|
|||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
using namespace std;
|
||||
char map[105][105];
|
||||
|
||||
void dfs(int line,int col)
|
||||
{
|
||||
if(map[line][col]=='.'||map[line][col]==0) return;
|
||||
map[line][col]='.';
|
||||
dfs(line-1,col-1);
|
||||
dfs(line-1,col);
|
||||
dfs(line-1,col+1);
|
||||
dfs(line,col-1);
|
||||
dfs(line,col+1);
|
||||
dfs(line+1,col-1);
|
||||
dfs(line+1,col);
|
||||
dfs(line+1,col+1);
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int n,m;
|
||||
scanf("%d %d",&n,&m);
|
||||
for(int i=1;i<n+1;i++)
|
||||
{
|
||||
scanf("%s",&map[i][1]);
|
||||
}
|
||||
int cnt=0;
|
||||
for(int i=1;i<n+1;i++)
|
||||
{
|
||||
for(int j=1;j<m+1;j++)
|
||||
{
|
||||
if(map[i][j]=='W')
|
||||
{
|
||||
dfs(i,j);
|
||||
cnt++;
|
||||
}
|
||||
}
|
||||
}
|
||||
printf("%d\n",cnt);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user