結果

問題 No.697 池の数はいくつか
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-23 03:25:57
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,212 bytes
コンパイル時間 6,717 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 109,996 KB
最終ジャッジ日時 2024-11-08 07:57:44
合計ジャッジ時間 55,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,208 KB
testcase_01 AC 130 ms
41,504 KB
testcase_02 AC 117 ms
40,064 KB
testcase_03 AC 128 ms
41,248 KB
testcase_04 AC 123 ms
40,024 KB
testcase_05 AC 131 ms
41,124 KB
testcase_06 AC 132 ms
41,204 KB
testcase_07 AC 116 ms
39,972 KB
testcase_08 AC 130 ms
41,360 KB
testcase_09 AC 115 ms
40,292 KB
testcase_10 AC 134 ms
41,420 KB
testcase_11 AC 133 ms
41,388 KB
testcase_12 AC 128 ms
41,192 KB
testcase_13 AC 139 ms
41,432 KB
testcase_14 AC 136 ms
41,244 KB
testcase_15 AC 129 ms
41,356 KB
testcase_16 AC 131 ms
41,228 KB
testcase_17 AC 116 ms
40,148 KB
testcase_18 AC 136 ms
41,332 KB
testcase_19 AC 132 ms
41,084 KB
testcase_20 AC 136 ms
41,100 KB
testcase_21 AC 131 ms
41,208 KB
testcase_22 AC 128 ms
41,064 KB
testcase_23 AC 136 ms
41,128 KB
testcase_24 AC 1,371 ms
62,604 KB
testcase_25 AC 1,423 ms
62,484 KB
testcase_26 AC 1,426 ms
62,580 KB
testcase_27 AC 1,426 ms
62,424 KB
testcase_28 AC 1,452 ms
62,376 KB
testcase_29 TLE -
testcase_30 AC 5,655 ms
109,088 KB
testcase_31 TLE -
testcase_32 AC 5,767 ms
109,688 KB
testcase_33 AC 5,972 ms
109,812 KB
testcase_34 AC 5,786 ms
108,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No697{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int H = sc.nextInt();
		int W = sc.nextInt();
		int[] dx = {0, 1, 0, -1};
		int[] dy = {-1, 0, 1, 0};

		int[][] a = new int[H][W];
		for(int h = 0; h < H; h++){
			for(int w = 0; w < W; w++){
				a[h][w] = sc.nextInt();
			}
		}

		int ans = 0;
		for(int h = 0; h < H; h++){
			for(int w = 0; w < W; w++){
				if(a[h][w] == 1){
					ans++;

					LinkedList<ArrayList<Integer>> list = new LinkedList<>();
					ArrayList<Integer> wh = new ArrayList<Integer>();
					wh.add(w);
					wh.add(h);
					list.add(wh);
					a[h][w] = 0;
					
					while(list.size()>0){
						ArrayList<Integer> xy = list.poll();
						int x = xy.get(0), y = xy.get(1);
						// System.out.println(y+" "+x);
						
						for(int i = 0; i < 4; i++){
							int xx = x+dx[i], yy = y+dy[i];
							if(xx >= 0 && xx < W && yy >= 0 && yy < H){
								if(a[yy][xx] == 1){
									ArrayList<Integer> xy_new = new ArrayList<Integer>();
									xy_new.add(xx);
									xy_new.add(yy);
									list.add(xy_new);
									a[yy][xx] = 0;
								}
							}
						}
					}
				}
			}
		}
		System.out.println(ans);
	}
}

0