結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-12-04 14:00:58
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,908 KB
testcase_01 AC 135 ms
41,384 KB
testcase_02 AC 133 ms
41,252 KB
testcase_03 AC 136 ms
41,148 KB
testcase_04 AC 123 ms
40,480 KB
testcase_05 AC 133 ms
41,128 KB
testcase_06 AC 138 ms
41,176 KB
testcase_07 AC 133 ms
41,288 KB
testcase_08 AC 131 ms
41,100 KB
testcase_09 AC 134 ms
41,172 KB
testcase_10 AC 140 ms
41,228 KB
testcase_11 AC 136 ms
41,156 KB
testcase_12 AC 134 ms
41,200 KB
testcase_13 AC 141 ms
41,272 KB
testcase_14 AC 135 ms
41,460 KB
testcase_15 AC 135 ms
41,396 KB
testcase_16 AC 134 ms
41,236 KB
testcase_17 AC 132 ms
40,932 KB
testcase_18 AC 133 ms
40,952 KB
testcase_19 AC 135 ms
41,104 KB
testcase_20 AC 139 ms
41,284 KB
testcase_21 AC 134 ms
41,216 KB
testcase_22 AC 134 ms
41,264 KB
testcase_23 AC 143 ms
41,640 KB
testcase_24 AC 1,396 ms
58,816 KB
testcase_25 AC 1,374 ms
58,772 KB
testcase_26 AC 1,347 ms
58,972 KB
testcase_27 AC 1,347 ms
57,840 KB
testcase_28 AC 1,427 ms
58,996 KB
testcase_29 AC 5,529 ms
69,952 KB
testcase_30 AC 5,180 ms
69,960 KB
testcase_31 AC 5,475 ms
70,104 KB
testcase_32 AC 5,278 ms
69,952 KB
testcase_33 AC 5,417 ms
69,872 KB
testcase_34 AC 5,076 ms
70,032 KB
権限があれば一括ダウンロードができます

ソースコード

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