結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-12-04 13:46:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 5,470 ms / 6,000 ms
コード長 1,344 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 78,148 KB
実行使用メモリ 70,336 KB
最終ジャッジ日時 2024-11-08 08:49:40
合計ジャッジ時間 46,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,264 KB
testcase_01 AC 138 ms
41,372 KB
testcase_02 AC 133 ms
41,232 KB
testcase_03 AC 129 ms
41,500 KB
testcase_04 AC 137 ms
41,100 KB
testcase_05 AC 132 ms
41,284 KB
testcase_06 AC 131 ms
41,256 KB
testcase_07 AC 132 ms
41,124 KB
testcase_08 AC 132 ms
41,452 KB
testcase_09 AC 132 ms
41,328 KB
testcase_10 AC 136 ms
41,420 KB
testcase_11 AC 134 ms
41,184 KB
testcase_12 AC 134 ms
41,220 KB
testcase_13 AC 139 ms
41,352 KB
testcase_14 AC 137 ms
41,056 KB
testcase_15 AC 133 ms
41,188 KB
testcase_16 AC 132 ms
41,144 KB
testcase_17 AC 131 ms
41,324 KB
testcase_18 AC 123 ms
40,336 KB
testcase_19 AC 133 ms
41,148 KB
testcase_20 AC 135 ms
41,548 KB
testcase_21 AC 134 ms
41,384 KB
testcase_22 AC 135 ms
41,164 KB
testcase_23 AC 140 ms
41,204 KB
testcase_24 AC 1,373 ms
58,920 KB
testcase_25 AC 1,344 ms
58,812 KB
testcase_26 AC 1,378 ms
58,928 KB
testcase_27 AC 1,412 ms
59,036 KB
testcase_28 AC 1,339 ms
58,984 KB
testcase_29 AC 5,470 ms
70,192 KB
testcase_30 AC 5,162 ms
70,336 KB
testcase_31 AC 5,398 ms
70,180 KB
testcase_32 AC 5,227 ms
69,720 KB
testcase_33 AC 5,216 ms
69,824 KB
testcase_34 AC 5,294 ms
69,100 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;
                        deq.add(xh * (w + 2) + xw + 1);
                        deq.add(xh * (w + 2) + xw - 1);
                        deq.add((xh + 1) * (w + 2) + xw);
                        deq.add((xh - 1) * (w + 2) + xw);
                    }
                }
            }
        }
        System.out.println(count);
    }
}
0