結果

問題 No.697 池の数はいくつか
ユーザー tenten
提出日時 2022-10-19 09:32:26
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

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