码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ 26-水池数目

时间:2018-05-12 22:28:38      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ems   clu   dfs   eof   mat   sizeof   cst   als   mes   

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<vector>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#define long long LL
using namespace std;
int map[105][105];
int vis[105][105];
int x[4]={1,0,-1,0};
int y[4]={0,1,0,-1};
int m1,m2;
bool inmap(int nx,int ny)
{
if(nx>=1&&nx<=m1&&ny>=1&&ny<=m2)
return true;

return false;
 } 
int dfs(int nx,int ny)
{
int mx,my;
vis[nx][ny]=1;
for(int i=0;i<4;i++)
{
mx=nx+x[i];
my=ny+y[i];
if(inmap(mx,my)&&map[mx][my]==1&&vis[mx][my]==0)
dfs(mx,my);
}
}
int main()
{
int n;
cin>>n;
while(n--)
{
    
cin>>m1>>m2;
memset(vis,0,sizeof(vis));
memset(map,0,sizeof(map));
for(int i=1;i<=m1;i++)
for(int j=1;j<=m2;j++)
{
cin>>map[i][j];
}

int ans=0;
for(int i=1;i<=m1;i++)
for(int j=1;j<=m2;j++)
{
if(vis[i][j]==0&&map[i][j]==1)
{
ans++;
dfs(i,j);}
}
cout<<ans<<endl;


}
return 0;
}

NYOJ 26-水池数目

标签:ems   clu   dfs   eof   mat   sizeof   cst   als   mes   

原文地址:https://www.cnblogs.com/koris-yyf/p/9029987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!