結果
問題 | No.697 池の数はいくつか |
ユーザー | kusagame12 |
提出日時 | 2023-11-26 13:37:57 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,763 bytes |
コンパイル時間 | 2,376 ms |
コンパイル使用メモリ | 82,600 KB |
実行使用メモリ | 637,188 KB |
最終ジャッジ日時 | 2024-09-26 11:41:28 |
合計ジャッジ時間 | 22,473 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
37,084 KB |
testcase_01 | AC | 58 ms
37,380 KB |
testcase_02 | AC | 56 ms
37,240 KB |
testcase_03 | AC | 61 ms
37,456 KB |
testcase_04 | AC | 61 ms
37,716 KB |
testcase_05 | AC | 61 ms
37,468 KB |
testcase_06 | AC | 62 ms
37,276 KB |
testcase_07 | AC | 62 ms
37,656 KB |
testcase_08 | AC | 69 ms
37,268 KB |
testcase_09 | AC | 61 ms
37,364 KB |
testcase_10 | AC | 60 ms
37,388 KB |
testcase_11 | AC | 61 ms
37,348 KB |
testcase_12 | AC | 61 ms
37,424 KB |
testcase_13 | AC | 63 ms
37,584 KB |
testcase_14 | AC | 61 ms
37,492 KB |
testcase_15 | AC | 61 ms
37,232 KB |
testcase_16 | AC | 59 ms
37,016 KB |
testcase_17 | AC | 64 ms
37,468 KB |
testcase_18 | AC | 62 ms
37,408 KB |
testcase_19 | AC | 61 ms
37,468 KB |
testcase_20 | AC | 62 ms
37,544 KB |
testcase_21 | AC | 59 ms
37,428 KB |
testcase_22 | AC | 60 ms
37,208 KB |
testcase_23 | AC | 63 ms
37,400 KB |
testcase_24 | AC | 2,362 ms
93,872 KB |
testcase_25 | TLE | - |
testcase_26 | MLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
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 { int[] h_w = readIntArray(); int h = h_w[0]; int w = h_w[1]; boolean[][] field = new boolean[h][w]; for(int i = 0 ; i < h ; i++){ String[] terrains = br.readLine().split(" "); for(int j = 0 ; j < w ; j++){ if(terrains[j].equals("1")){ field[i][j] = true; } } } int ans = 0; for(int i = 0 ; i < h ; i++){ for(int j = 0 ; j < w ; j++){ if(field[i][j]){ field = bfs(field , i , j , h , w); ans++; } } } System.out.println(ans); } private static boolean[][] bfs(boolean[][] field , int currentH , int currentW , int h , int w){ ArrayDeque<Pair> todo = new ArrayDeque<>(); //Pair p = new Pair(currentH , currentW); todo.addLast(new Pair(currentH , currentW)); while(!todo.isEmpty()){ Pair p = todo.pollFirst(); currentH = p.getY(); currentW = p.getX(); //ここで訪れたことを更新すると、時間がかかる(TLEかMLEする)。 field[currentH][currentW] = false; for(int i = 0 ; i < 4 ; i++){ int nextH = currentH + dy[i]; int nextW = currentW + dx[i]; if(nextH >= 0 && nextH < h && nextW >= 0 && nextW < w){ if(field[nextH][nextW]){ todo.addLast(new Pair(nextH , nextW)); //ここで訪れたことを更新すると、早くなった(TLEもMLEもしない)。 //field[nextH][nextW] = false; } } } } 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; } }