結果

問題 No.697 池の数はいくつか
ユーザー kusagame12kusagame12
提出日時 2023-11-26 10:58:29
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,788 bytes
コンパイル時間 2,893 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 388,800 KB
最終ジャッジ日時 2023-11-26 10:58:53
合計ジャッジ時間 18,060 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
54,788 KB
testcase_01 AC 66 ms
54,632 KB
testcase_02 AC 64 ms
54,764 KB
testcase_03 AC 64 ms
54,768 KB
testcase_04 AC 65 ms
54,760 KB
testcase_05 AC 70 ms
54,648 KB
testcase_06 AC 66 ms
52,688 KB
testcase_07 AC 64 ms
54,740 KB
testcase_08 AC 64 ms
54,760 KB
testcase_09 AC 64 ms
54,756 KB
testcase_10 AC 64 ms
54,740 KB
testcase_11 AC 63 ms
54,652 KB
testcase_12 AC 64 ms
54,668 KB
testcase_13 AC 64 ms
54,768 KB
testcase_14 AC 63 ms
54,756 KB
testcase_15 AC 64 ms
54,760 KB
testcase_16 AC 63 ms
54,748 KB
testcase_17 AC 63 ms
54,648 KB
testcase_18 AC 64 ms
54,756 KB
testcase_19 AC 65 ms
54,740 KB
testcase_20 AC 65 ms
54,624 KB
testcase_21 AC 72 ms
54,752 KB
testcase_22 AC 63 ms
54,628 KB
testcase_23 AC 66 ms
54,760 KB
testcase_24 AC 2,272 ms
114,316 KB
testcase_25 MLE -
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    
    private static int[] dy = {0,1,0,-1};
    private static int[] dx = {1,0,-1,0};
    private static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    
    public static void main(String[] args) throws Exception {

        try {

    		int[] h_w = readIntArray();
            int h = h_w[0];
            int w = h_w[1];
            
            int[][] field = new int[h][w];
            for(int i = 0 ; i < h ; i++){
                
                int[] terrains = readIntArray();
                field[i] = terrains;
                
            }
            
            ArrayDeque<Pair> todo = new ArrayDeque<>();
            int ans = 0;
            for(int i = 0 ; i < h ; i++){
                for(int j = 0 ; j < w ; j++){
                    
                    int currentH = i;
                    int currentW = j;
                    if(field[currentH][currentW] == 0){
                        continue;
                    }
                    
                    Pair p = new Pair(currentH , currentW);
                    field = bfs(field , p , h , w , todo);
                    ans++;
                    
                }
            }
            
            System.out.println(ans);

		} catch (Exception e) {

            System.out.println("エラー");
       
		}
		
    }
    
    private static int[][] bfs(int[][] field , Pair p , int h , int w , ArrayDeque<Pair> todo){
     
        todo.clear();
        todo.add(p);
        
        while(!todo.isEmpty()){
            
            Pair pair = todo.remove();
            int currentH = pair.getY();
            int currentW = pair.getX();
            
            field[currentH][currentW] = 0;
            
            for(int i = 0 ; i < 4 ; i++){
                
                int nextH = currentH + dy[i];
                int nextW = currentW + dx[i];
                
                if (nextH < 0 || nextW < 0 || nextH >= h || nextW >= w) {
					continue;
                }
                if(field[nextH][nextW] == 0){
                    continue;
                }
                
                Pair np = new Pair(nextH , nextW);
                todo.add(np);
                
            }

        }
        
        return field;
                
    }
    
    private static int[] readIntArray() throws Exception{
        
		int[] intArray = Arrays.stream(br.readLine().split(" "))
							.mapToInt(Integer::parseInt).toArray();

		return intArray;

	}

}

class Pair{
    
    int y , x;
    
    public Pair(int y  , int x){
        this.y = y;
        this.x = x;
    }
    
    public int getY(){
        return y;
    }
    
    public int getX(){
        return x;
    }
    
}
0