結果

問題 No.697 池の数はいくつか
ユーザー tentententen
提出日時 2022-10-19 09:32:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,491 ms / 6,000 ms
コード長 2,260 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 78,244 KB
実行使用メモリ 59,220 KB
最終ジャッジ日時 2024-06-29 13:16:42
合計ジャッジ時間 17,730 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,208 KB
testcase_01 AC 51 ms
37,168 KB
testcase_02 AC 51 ms
36,940 KB
testcase_03 AC 52 ms
36,928 KB
testcase_04 AC 52 ms
36,900 KB
testcase_05 AC 53 ms
37,032 KB
testcase_06 AC 53 ms
37,044 KB
testcase_07 AC 53 ms
37,196 KB
testcase_08 AC 53 ms
36,900 KB
testcase_09 AC 53 ms
36,624 KB
testcase_10 AC 53 ms
36,984 KB
testcase_11 AC 52 ms
36,900 KB
testcase_12 AC 52 ms
37,368 KB
testcase_13 AC 51 ms
37,188 KB
testcase_14 AC 51 ms
37,376 KB
testcase_15 AC 52 ms
36,944 KB
testcase_16 AC 52 ms
37,168 KB
testcase_17 AC 52 ms
36,800 KB
testcase_18 AC 53 ms
36,796 KB
testcase_19 AC 51 ms
37,032 KB
testcase_20 AC 51 ms
36,900 KB
testcase_21 AC 52 ms
37,040 KB
testcase_22 AC 51 ms
36,920 KB
testcase_23 AC 52 ms
36,892 KB
testcase_24 AC 504 ms
47,704 KB
testcase_25 AC 509 ms
47,888 KB
testcase_26 AC 503 ms
47,244 KB
testcase_27 AC 494 ms
47,696 KB
testcase_28 AC 501 ms
47,400 KB
testcase_29 AC 1,469 ms
59,220 KB
testcase_30 AC 1,369 ms
58,936 KB
testcase_31 AC 1,491 ms
58,804 KB
testcase_32 AC 1,339 ms
58,608 KB
testcase_33 AC 1,269 ms
58,680 KB
testcase_34 AC 1,295 ms
58,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int h = sc.nextInt();
        int w = sc.nextInt();
        boolean[][] isWater = new boolean[h][w];
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                isWater[i][j] = (sc.nextInt() == 1);
            }
        }
        ArrayDeque<Integer> current = new ArrayDeque<>();
        int ans = 0;
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                if (!isWater[i][j]) {
                    continue;
                }
                ans++;
                current.add(i * w + j);
                while (current.size() > 0) {
                    int x = current.poll();
                    int r = x / w;
                    int c = x % w;
                    if (!isWater[r][c]) {
                        continue;
                    }
                    isWater[r][c] = false;
                    if (r > 0) {
                        current.add(x - w);
                    }
                    if (r < h - 1) {
                        current.add(x + w);
                    }
                    if (c > 0) {
                        current.add(x - 1);
                    }
                    if (c < w - 1) {
                        current.add(x + 1);
                    }
                }
            }
        }
        System.out.println(ans);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0