POJ 1979 Red and Black(DFS)

http://poj.org/problem?id=1979 

package challengeacm1.ch02.s01;

import java.util.Scanner;

/**
 * Red and Black
 * Time Limit: 1000MS		Memory Limit: 30000K
 * Total Submissions: 56247		Accepted: 29504
 *
 * http://poj.org/problem?id=1979
 *
 * Description
 *
 * There is a rectangular room, covered with square tiles. Each tile is colored either red or black.
 * A man is standing on a black tile. From a tile, he can move to one of four adjacent tiles.
 * But he can't move on red tiles, he can move only on black tiles.
 *
 * Write a program to count the number of black tiles which he can reach by repeating the moves described above.
 *
 * @author Dylan
 * @date 2020/5/2 - 19:49
 */
public class POJ1979 {
    static final int N = 21;
    static boolean mark[][];
    static char arr[][] = new char[N][N];
    static int w, h;
    static int[] step = {0};

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(true){
            int x=-1, y=-1;
            w = sc.nextInt();
            h = sc.nextInt();
            sc.nextLine();
            if(w == 0 && h == 0) break;
            for (int i = 0; i < h; i++) {
                String str = sc.nextLine();
                for (int j = 0; j < w; j++) {
                    arr[i][j] = str.charAt(j);
                    if(arr[i][j] == '@'){
                        x = i;
                        y = j;
                    }
                }
            }
            mark = new boolean[N][N]; // 每次恢复现场
            step[0] = 0;
            dfs(x,y,step);
            System.out.println(step[0]);
        }
    }

    public static void dfs(int x, int y, int[] step){
        if(x < 0 || x > h - 1 || y < 0 || y > w - 1 || arr[x][y] == '#' || mark[x][y] == true){
            return;
        }
        step[0]++;
        mark[x][y] = true;
        dfs(x + 1, y, step);
        dfs(x - 1, y, step);
        dfs(x, y + 1, step);
        dfs(x, y - 1, step);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值