結果

問題 No.697 池の数はいくつか
ユーザー tenten
提出日時 2020-12-04 14:00:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 5,529 ms / 6,000 ms
コード長 1,660 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 70,104 KB
最終ジャッジ日時 2024-11-08 08:51:55
合計ジャッジ時間 46,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        boolean[][] field = new boolean[h + 2][w + 2];
        for (int i = 1; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                field[i][j] = (sc.nextInt() == 1);
            }
        }
        ArrayDeque<Integer> deq = new ArrayDeque<>();
        int count = 0;
        for (int i = 1; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                if (field[i][j]) {
                    count++;
                    deq.add(i * (w + 2) + j);
                    while (deq.size() > 0) {
                        int x = deq.poll();
                        int xh = x / (w + 2);
                        int xw = x % (w + 2);
                        if (!field[xh][xw]) {
                            continue;
                        }
                        field[xh][xw] = false;
                        if (field[xh][xw + 1]) {
                            deq.add(xh * (w + 2) + xw + 1);
                        }
                        if (field[xh][xw - 1]) {
                            deq.add(xh * (w + 2) + xw - 1);
                        }
                        if (field[xh + 1][xw]) {
                            deq.add((xh + 1) * (w + 2) + xw);
                        }
                        if (field[xh - 1][xw]) {
                            deq.add((xh - 1) * (w + 2) + xw);
                        }
                    }
                }
            }
        }
        System.out.println(count);
    }
}
0