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

hdu 1241(dfs)

时间:2017-09-07 18:17:10      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:std   nbsp   str   ++   code   namespace   map   dfs   方向   

dfs寻找连通块,8个方向搜索,

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=100+10;
bool vis[maxn][maxn];
int x[10]={-1,-1,-1,0,0,1,1,1};
int y[10]={-1,0,1,1,-1,-1,0,1};
int ans;
string mapp[maxn];
int n,m;
void dfs(int p,int q)
{
       for(int i=0;i<8;i++)
       {
           int xx=p+x[i];
           int yy=q+y[i];
           if(xx>=0&&xx<n&&yy>=0&&yy<m&&mapp[xx][yy]==@)
           {
               mapp[xx][yy]=*;
               dfs(xx,yy);
           }
       }
}
int main()
{
    while(~scanf("%d%d",&n,&m)&&(n+m))
    {
         for(int i=0;i<n;i++)
             cin >> mapp[i];
            ans=0;
            memset(vis,0,sizeof(vis));
             for(int i=0;i<n;i++)
                 for(int j=0;j<m;j++)
                if(mapp[i][j]==@)
                {
                    mapp[i][j]=*;
                    dfs(i,j);
                      ans++;
                }
           printf("%d\n",ans);
    }
    return 0;
}

 

今天比较生气,无话可说

hdu 1241(dfs)

标签:std   nbsp   str   ++   code   namespace   map   dfs   方向   

原文地址:http://www.cnblogs.com/Wangwanxiang/p/7490675.html

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