其他分享
首页 > 其他分享> > P1451 求细胞数量

P1451 求细胞数量

作者:互联网

这题写之前,写一个good函数,判断x和y越不越界,然后四联通,标记。 代码:

#include<bits/stdc++.h>
using namespace std;
int n,m;
char mat[10001][10001];
int vis[10001][10001];
bool good(int x,int y) {
    if(x>=0&&x<n&&y>=0&&y<m&&!vis[x][y]&&mat[x][y]!='0') {
        return true;
    }
    return false;
}
void dfs(int x,int y) {
    if(good(x,y)){
        vis[x][y]=1;
        dfs(x+1,y);
        dfs(x-1,y);
        dfs(x,y-1);
        dfs(x,y+1); 
    }
}
int main() {
    cin>>n>>m;
    for(int i=0; i<n; i++) {
        for(int j=0; j<m; j++) {
            cin>>mat[i][j];
        }
    }
    int ans=0;
    for(int i=0; i<n; i++) {
        for(int j=0; j<m; j++) {
            if(good(i,j)) {
                ans++;
                dfs(i,j);
            }
        }
    }
    cout<<ans;
}

标签:good,P1451,mat,int,细胞,char,&&,数量,10001
来源: https://blog.csdn.net/weixin_67264402/article/details/123099091