結果

問題 No.402 最も海から遠い場所
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-07 12:40:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,878 ms / 3,000 ms
コード長 1,950 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 322,048 KB
最終ジャッジ日時 2024-10-06 09:57:53
合計ジャッジ時間 14,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,964 KB
testcase_01 AC 116 ms
41,192 KB
testcase_02 AC 130 ms
41,664 KB
testcase_03 AC 109 ms
41,244 KB
testcase_04 AC 119 ms
41,340 KB
testcase_05 AC 124 ms
40,972 KB
testcase_06 AC 110 ms
41,288 KB
testcase_07 AC 123 ms
41,084 KB
testcase_08 AC 125 ms
41,448 KB
testcase_09 AC 121 ms
40,820 KB
testcase_10 AC 125 ms
41,696 KB
testcase_11 AC 113 ms
41,240 KB
testcase_12 AC 111 ms
41,192 KB
testcase_13 AC 189 ms
42,792 KB
testcase_14 AC 176 ms
42,988 KB
testcase_15 AC 296 ms
50,112 KB
testcase_16 AC 486 ms
60,212 KB
testcase_17 AC 1,355 ms
205,964 KB
testcase_18 AC 2,878 ms
226,008 KB
testcase_19 AC 870 ms
105,960 KB
testcase_20 AC 1,864 ms
109,140 KB
testcase_21 AC 1,628 ms
322,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    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);
        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(v.h + xmove[i] >= 0 && v.h + xmove[i] < H && v.w + ymove[j] >= 0 && v.w + ymove[j] < W) {
            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;
  }
}
0