红与黑 dfs 连通块计数 java

该文章是关于ACwing平台的一道算法题解,题目名为“红与黑”。代码使用Java实现,主要运用深度优先搜索(DFS)策略,从给定的起点(@字符所在位置)开始,遍历并计算不包含#字符的有效区域的大小。输入和输出分别涉及二维字符数组的读取和结果的打印。
摘要由CSDN通过智能技术生成

🍑 算法题解专栏


🍑 acwing 1113. 红与黑

在这里插入图片描述

输入

6 9 
....#. 
.....# 
...... 
...... 
...... 
...... 
...... 
#@...# 
.#..#. 
0 0

输出

45

import java.util.*;


class Main
{
    static int N = 30,n,m;
    static char[][] g = new char[N][N];
    static boolean[][] st = new boolean[N][N];
    static int[] dx = {-1,1,0,0};
    static int[] dy = {0,0,-1,1};
    
    static int dfs(int x,int y)
    {
        int cnt = 1;//当前点也算一个
        st[x][y] = true;
        
        for(int i = 0; i < 4; i++)
        {
            int xx = x + dx[i];
            int yy = y + dy[i];
            if(xx < 0 || xx >= n || yy < 0 || yy >= m )
                continue;
            if(st[xx][yy] || g[xx][yy] == '#') continue;
            
            cnt += dfs(xx,yy);
        }
        
        return cnt;
    }
    
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext())
        {
        	//注意 行数和列数 的输入顺序
            m = sc.nextInt();
            n = sc.nextInt();
            if(n == 0 && m == 0)
                break;
            for(int i = 0; i < n; i++)
            {
                String s = sc.next();
                for(int j = 0; j < m; j++)
                    g[i][j] = s.charAt(j);
            }
            int x = 0;
            int y = 0;
            for(int i = 0; i < n; i++)
                for(int j = 0; j < m; j++)
                {
                    if(g[i][j] == '@')
                    {
                        x = i;
                        y = j;
                    }
                    st[i][j] = false;
                }
            
            System.out.println(dfs(x,y));
            
        }
        
    }
    
    
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值