結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2020-09-03 12:57:02
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,360 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 752,236 KB
最終ジャッジ日時 2024-11-25 16:29:10
合計ジャッジ時間 18,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,044 KB
testcase_01 AC 121 ms
53,892 KB
testcase_02 AC 107 ms
52,584 KB
testcase_03 AC 120 ms
54,028 KB
testcase_04 AC 123 ms
54,304 KB
testcase_05 AC 118 ms
53,904 KB
testcase_06 AC 107 ms
53,020 KB
testcase_07 AC 119 ms
54,076 KB
testcase_08 AC 118 ms
53,992 KB
testcase_09 AC 120 ms
54,292 KB
testcase_10 AC 121 ms
53,720 KB
testcase_11 AC 121 ms
54,088 KB
testcase_12 AC 120 ms
53,888 KB
testcase_13 AC 110 ms
53,160 KB
testcase_14 AC 109 ms
52,720 KB
testcase_15 AC 121 ms
54,188 KB
testcase_16 AC 119 ms
53,812 KB
testcase_17 AC 114 ms
52,764 KB
testcase_18 AC 111 ms
53,108 KB
testcase_19 AC 119 ms
54,180 KB
testcase_20 AC 107 ms
52,732 KB
testcase_21 AC 120 ms
53,548 KB
testcase_22 AC 109 ms
52,904 KB
testcase_23 AC 121 ms
54,192 KB
testcase_24 AC 379 ms
60,412 KB
testcase_25 AC 388 ms
60,816 KB
testcase_26 AC 394 ms
60,520 KB
testcase_27 AC 349 ms
61,044 KB
testcase_28 AC 370 ms
60,232 KB
testcase_29 MLE -
testcase_30 AC 1,016 ms
79,896 KB
testcase_31 MLE -
testcase_32 AC 1,028 ms
80,120 KB
testcase_33 AC 1,029 ms
80,040 KB
testcase_34 AC 1,027 ms
80,008 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();
    	sc.nextLine();
    	boolean[][] field = new boolean[h + 2][w + 2];
    	boolean[][] used = new boolean[h + 2][w + 2];
    	for (int i = 1; i <= h; i++) {
    	    char[] arr = sc.nextLine().toCharArray();
    	    for (int j = 1; j <= w; j++) {
    	        field[i][j] = (arr[(j - 1) * 2] == '1');
    	    }
    	}
    	int count = 0;
    	for (int i = 1; i <= h; i++) {
    	    for (int j = 1; j <= w; j++) {
    	        if (field[i][j] && !used[i][j]) {
    	            count++;
    	            setUse(i, j, field, used);
    	        }
    	    }
    	}
    	System.out.println(count);
	}
	
	static void setUse(int r, int c, boolean[][] field, boolean[][] used) {
	    if (field[r][c] && !used[r][c]) {
	        used[r][c] = true;
	        if (field[r - 1][c] && !used[r - 1][c]) {
	            setUse(r - 1, c, field, used);
	        }
	        if (field[r + 1][c] && !used[r + 1][c]) {
	            setUse(r + 1, c, field, used);
	        }
	        if (field[r][c - 1] && !used[r][c - 1]) {
	            setUse(r, c - 1, field, used);
	        }
	        if (field[r][c + 1] && !used[r][c + 1]) {
	            setUse(r, c + 1, field, used);
	        }
	    }
	}
}
0