結果

問題 No.697 池の数はいくつか
ユーザー htensaihtensai
提出日時 2020-02-14 17:43:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,144 ms / 6,000 ms
コード長 1,550 bytes
コンパイル時間 3,619 ms
コンパイル使用メモリ 78,636 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-11-08 08:35:12
合計ジャッジ時間 14,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,996 KB
testcase_01 AC 54 ms
36,852 KB
testcase_02 AC 54 ms
36,824 KB
testcase_03 AC 56 ms
36,948 KB
testcase_04 AC 56 ms
36,800 KB
testcase_05 AC 56 ms
37,092 KB
testcase_06 AC 54 ms
36,892 KB
testcase_07 AC 54 ms
36,540 KB
testcase_08 AC 54 ms
36,552 KB
testcase_09 AC 54 ms
36,700 KB
testcase_10 AC 54 ms
37,044 KB
testcase_11 AC 54 ms
37,052 KB
testcase_12 AC 55 ms
37,044 KB
testcase_13 AC 55 ms
36,892 KB
testcase_14 AC 54 ms
37,036 KB
testcase_15 AC 53 ms
37,036 KB
testcase_16 AC 55 ms
36,692 KB
testcase_17 AC 54 ms
37,052 KB
testcase_18 AC 54 ms
36,552 KB
testcase_19 AC 55 ms
36,892 KB
testcase_20 AC 54 ms
37,040 KB
testcase_21 AC 54 ms
36,936 KB
testcase_22 AC 55 ms
36,912 KB
testcase_23 AC 54 ms
37,004 KB
testcase_24 AC 305 ms
46,612 KB
testcase_25 AC 330 ms
46,640 KB
testcase_26 AC 363 ms
46,992 KB
testcase_27 AC 356 ms
46,880 KB
testcase_28 AC 350 ms
46,872 KB
testcase_29 AC 1,132 ms
58,368 KB
testcase_30 AC 823 ms
57,384 KB
testcase_31 AC 1,144 ms
57,244 KB
testcase_32 AC 851 ms
57,164 KB
testcase_33 AC 820 ms
57,168 KB
testcase_34 AC 824 ms
57,072 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]);
		int ww = w + 2;
		boolean[][] field = new boolean[h + 2][w + 2];
		for (int i = 1; i <= h; i++) {
		    char[] arr = br.readLine().toCharArray();
		    for (int j = 0; j < w; j++) {
		        field[i][j + 1] = arr[j * 2] == '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 * ww + j);
		            while (deq.size() > 0) {
		                int x = deq.poll();
		                if (field[x / ww][x % ww]) {
		                    field[x / ww][x % ww] = false;
		                    if (field[x / ww][x % ww - 1]) {
		                        deq.add(x - 1);
		                    }
		                    if (field[x / ww][x % ww + 1]) {
		                        deq.add(x + 1);
		                    }
		                    if (field[x / ww - 1][x % ww]) {
		                        deq.add(x - ww);
		                    }
		                    if (field[x / ww + 1][x % ww]) {
		                        deq.add(x + ww);
		                    }
		                }
		            }
		        }
		    }
		}
		System.out.println(count);
    }
}
0