結果

問題 No.697 池の数はいくつか
ユーザー htensaihtensai
提出日時 2020-02-14 17:30:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 5,320 ms / 6,000 ms
コード長 1,013 bytes
コンパイル時間 4,028 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 70,460 KB
最終ジャッジ日時 2024-11-08 08:33:31
合計ジャッジ時間 46,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,524 KB
testcase_01 AC 115 ms
40,520 KB
testcase_02 AC 120 ms
41,428 KB
testcase_03 AC 109 ms
40,040 KB
testcase_04 AC 121 ms
41,068 KB
testcase_05 AC 102 ms
39,892 KB
testcase_06 AC 121 ms
41,040 KB
testcase_07 AC 119 ms
41,032 KB
testcase_08 AC 119 ms
40,836 KB
testcase_09 AC 109 ms
40,260 KB
testcase_10 AC 125 ms
41,024 KB
testcase_11 AC 124 ms
40,976 KB
testcase_12 AC 120 ms
40,948 KB
testcase_13 AC 129 ms
41,352 KB
testcase_14 AC 126 ms
40,396 KB
testcase_15 AC 130 ms
41,264 KB
testcase_16 AC 125 ms
41,260 KB
testcase_17 AC 122 ms
41,196 KB
testcase_18 AC 121 ms
41,172 KB
testcase_19 AC 120 ms
40,956 KB
testcase_20 AC 124 ms
41,128 KB
testcase_21 AC 123 ms
40,960 KB
testcase_22 AC 123 ms
41,200 KB
testcase_23 AC 125 ms
41,504 KB
testcase_24 AC 1,279 ms
58,776 KB
testcase_25 AC 1,287 ms
58,832 KB
testcase_26 AC 1,320 ms
58,844 KB
testcase_27 AC 1,321 ms
58,948 KB
testcase_28 AC 1,260 ms
58,804 KB
testcase_29 AC 5,311 ms
70,092 KB
testcase_30 AC 4,988 ms
70,296 KB
testcase_31 AC 5,320 ms
69,976 KB
testcase_32 AC 5,033 ms
70,460 KB
testcase_33 AC 4,978 ms
70,416 KB
testcase_34 AC 4,974 ms
69,956 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();
		int ww = w + 2;
		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 * ww + j);
		            while (deq.size() > 0) {
		                int x = deq.poll();
		                if (field[x / ww][x % ww]) {
		                    field[x / ww][x % ww] = false;
		                    deq.add(x - 1);
		                    deq.add(x + 1);
		                    deq.add(x + ww);
		                    deq.add(x - ww);
		                }
		            }
		        }
		    }
		}
		System.out.println(count);
    }
}
0