結果
問題 | No.697 池の数はいくつか |
ユーザー | kusagame12 |
提出日時 | 2023-11-25 21:23:11 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,683 bytes |
コンパイル時間 | 6,431 ms |
コンパイル使用メモリ | 80,924 KB |
実行使用メモリ | 144,200 KB |
最終ジャッジ日時 | 2024-09-26 11:21:05 |
合計ジャッジ時間 | 21,026 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
38,020 KB |
testcase_01 | AC | 62 ms
38,092 KB |
testcase_02 | AC | 61 ms
37,808 KB |
testcase_03 | AC | 61 ms
37,820 KB |
testcase_04 | AC | 62 ms
37,796 KB |
testcase_05 | AC | 72 ms
37,840 KB |
testcase_06 | AC | 63 ms
37,952 KB |
testcase_07 | AC | 61 ms
37,604 KB |
testcase_08 | AC | 59 ms
37,692 KB |
testcase_09 | AC | 60 ms
37,588 KB |
testcase_10 | AC | 60 ms
37,772 KB |
testcase_11 | AC | 61 ms
37,652 KB |
testcase_12 | AC | 61 ms
37,960 KB |
testcase_13 | AC | 63 ms
38,072 KB |
testcase_14 | AC | 62 ms
37,820 KB |
testcase_15 | AC | 63 ms
37,908 KB |
testcase_16 | AC | 63 ms
38,232 KB |
testcase_17 | AC | 63 ms
37,996 KB |
testcase_18 | AC | 66 ms
37,696 KB |
testcase_19 | AC | 62 ms
37,872 KB |
testcase_20 | AC | 63 ms
37,844 KB |
testcase_21 | AC | 63 ms
38,220 KB |
testcase_22 | AC | 60 ms
37,972 KB |
testcase_23 | AC | 60 ms
37,836 KB |
testcase_24 | AC | 3,153 ms
144,200 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]; 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); 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 = new LinkedList<>(); int[] h_w = {currentH , currentW}; todo.add(h_w); while(!todo.isEmpty()){ int[] 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; } }