結果
問題 | No.402 最も海から遠い場所 |
ユーザー | takeya_okino |
提出日時 | 2017-07-07 12:30:03 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,889 bytes |
コンパイル時間 | 2,318 ms |
コンパイル使用メモリ | 78,424 KB |
実行使用メモリ | 398,000 KB |
最終ジャッジ日時 | 2024-10-06 09:57:10 |
合計ジャッジ時間 | 12,302 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 130 ms
41,340 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 873 ms
126,368 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int H = sc.nextInt(); int W = sc.nextInt(); char[][] board = new char[H][W]; int[][] dp = new int[H][W]; for(int i = 0; i < H; i++) { String s = sc.next(); for(int j = 0; j < W; j++) { char c = s.charAt(j); board[i][j] = c; if(c == '.') { dp[i][j] = 5000; } } } LinkedList<V> q = new LinkedList<V>(); int[] xmove = {-1, 0, 1}; int[] ymove = {-1, 0, 1}; for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { if(dp[i][j] == 0) { if(i == 0 || i == H - 1 || j == 0 || j == W - 1) { dp[i][j] = 1; V v = new V(i, j); q.add(v); } else { boolean f = false; for(int k = 0; k < 3; k++) { for(int l = 0; l < 3; l++) { if(dp[i + xmove[k]][j + ymove[l]] == 5000) { f = true; dp[i][j] = 1; V v = new V(i, j); q.add(v); } if(f) break; } if(f) break; } } } } } while(q.size() > 0) { V v = q.poll(); for(int i = 0; i < 3; i++) { for(int j = 0; j < 3; j++) { if(dp[v.h + xmove[i]][v.w + ymove[j]] == 0) { dp[v.h + xmove[i]][v.w + ymove[j]] = dp[v.h][v.w] + 1; q.add(new V(v.h + xmove[i], v.w + ymove[j])); } } } } int ans = 0; for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { if(dp[i][j] != 5000) ans = Math.max(ans, dp[i][j]); } } System.out.println(ans); } } class V { int h; int w; V(int h, int w) { this.h = h; this.w = w; } }