結果
問題 | No.697 池の数はいくつか |
ユーザー | kusagame12 |
提出日時 | 2023-11-25 21:28:56 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,749 bytes |
コンパイル時間 | 2,468 ms |
コンパイル使用メモリ | 85,200 KB |
実行使用メモリ | 138,616 KB |
最終ジャッジ日時 | 2024-09-26 11:21:23 |
合計ジャッジ時間 | 17,531 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
37,676 KB |
testcase_01 | AC | 56 ms
37,592 KB |
testcase_02 | AC | 56 ms
37,680 KB |
testcase_03 | AC | 57 ms
37,784 KB |
testcase_04 | AC | 60 ms
37,672 KB |
testcase_05 | AC | 63 ms
38,076 KB |
testcase_06 | AC | 57 ms
37,780 KB |
testcase_07 | AC | 60 ms
38,088 KB |
testcase_08 | AC | 57 ms
37,912 KB |
testcase_09 | AC | 60 ms
37,476 KB |
testcase_10 | AC | 57 ms
37,476 KB |
testcase_11 | AC | 57 ms
37,928 KB |
testcase_12 | AC | 57 ms
37,832 KB |
testcase_13 | AC | 55 ms
37,348 KB |
testcase_14 | AC | 58 ms
37,736 KB |
testcase_15 | AC | 55 ms
37,300 KB |
testcase_16 | AC | 61 ms
37,716 KB |
testcase_17 | AC | 58 ms
37,724 KB |
testcase_18 | AC | 56 ms
37,400 KB |
testcase_19 | AC | 56 ms
37,756 KB |
testcase_20 | AC | 55 ms
37,788 KB |
testcase_21 | AC | 56 ms
37,540 KB |
testcase_22 | AC | 55 ms
37,664 KB |
testcase_23 | AC | 55 ms
37,624 KB |
testcase_24 | AC | 3,073 ms
138,616 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
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 { 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; } boolean[][] seen = new boolean[h][w]; LinkedList<int[]> todo = new LinkedList<>(); int ans = 0; for(int i = 0 ; i < h ; i++){ for(int j = 0 ; j < w ; j++){ int currentH = i; int currentW = j; if(seen[currentH][currentW] || field[currentH][currentW] == 0){ continue; } seen = bfs(field , seen , currentH , currentW , h , w , todo); ans++; } } System.out.println(ans); } catch (Exception e) { } } private static boolean[][] bfs(int[][] field , boolean[][] seen , int currentH , int currentW , int h , int w , LinkedList<int[]> todo){ todo.clear(); int[] currentH_W = {currentH , currentW}; todo.add(currentH_W); while(!todo.isEmpty()){ currentH_W = todo.pop(); currentH = currentH_W[0]; currentW = currentH_W[1]; seen[currentH][currentW] = true; 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(seen[nextH][nextW] || field[nextH][nextW] == 0){ continue; } int[] nextH_W = new int[2]; nextH_W[0] = nextH; nextH_W[1] = nextW; todo.add(nextH_W); } } return seen; } private static int[] readIntArray() throws Exception{ int[] intArray = Arrays.stream(br.readLine().split(" ")) .mapToInt(Integer::parseInt).toArray(); return intArray; } }