結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-12-04 14:04:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,225 ms / 6,000 ms
コード長 1,882 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 59,060 KB
最終ジャッジ日時 2024-11-08 08:50:11
合計ジャッジ時間 15,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,588 KB
testcase_01 AC 47 ms
36,844 KB
testcase_02 AC 47 ms
36,964 KB
testcase_03 AC 46 ms
36,488 KB
testcase_04 AC 47 ms
36,844 KB
testcase_05 AC 46 ms
37,052 KB
testcase_06 AC 47 ms
36,904 KB
testcase_07 AC 46 ms
36,604 KB
testcase_08 AC 47 ms
36,880 KB
testcase_09 AC 46 ms
36,708 KB
testcase_10 AC 46 ms
36,892 KB
testcase_11 AC 46 ms
36,584 KB
testcase_12 AC 48 ms
36,608 KB
testcase_13 AC 47 ms
36,544 KB
testcase_14 AC 47 ms
36,672 KB
testcase_15 AC 47 ms
36,916 KB
testcase_16 AC 47 ms
36,992 KB
testcase_17 AC 47 ms
36,724 KB
testcase_18 AC 46 ms
37,036 KB
testcase_19 AC 47 ms
36,916 KB
testcase_20 AC 47 ms
36,960 KB
testcase_21 AC 46 ms
36,832 KB
testcase_22 AC 47 ms
36,964 KB
testcase_23 AC 47 ms
36,980 KB
testcase_24 AC 491 ms
47,936 KB
testcase_25 AC 492 ms
48,280 KB
testcase_26 AC 515 ms
48,064 KB
testcase_27 AC 522 ms
48,020 KB
testcase_28 AC 496 ms
48,504 KB
testcase_29 AC 1,221 ms
58,688 KB
testcase_30 AC 1,040 ms
58,860 KB
testcase_31 AC 1,225 ms
58,840 KB
testcase_32 AC 1,042 ms
59,060 KB
testcase_33 AC 1,078 ms
58,552 KB
testcase_34 AC 1,050 ms
58,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int h = Integer.parseInt(first[0]);
        int w = Integer.parseInt(first[1]);
        boolean[][] field = new boolean[h + 2][w + 2];
        for (int i = 1; i <= h; i++) {
            String[] line = br.readLine().split(" ", w);
            for (int j = 1; j <= w; j++) {
                field[i][j] = (line[j - 1].charAt(0) == '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