結果

問題 No.402 最も海から遠い場所
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-07 12:34:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,826 ms / 3,000 ms
コード長 2,012 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 78,076 KB
実行使用メモリ 407,908 KB
最終ジャッジ日時 2024-10-06 09:57:32
合計ジャッジ時間 15,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,628 KB
testcase_01 AC 121 ms
54,132 KB
testcase_02 AC 127 ms
53,644 KB
testcase_03 AC 115 ms
53,848 KB
testcase_04 AC 120 ms
54,296 KB
testcase_05 AC 120 ms
53,804 KB
testcase_06 AC 126 ms
53,928 KB
testcase_07 AC 122 ms
53,924 KB
testcase_08 AC 118 ms
54,020 KB
testcase_09 AC 105 ms
52,864 KB
testcase_10 AC 118 ms
53,944 KB
testcase_11 AC 114 ms
52,900 KB
testcase_12 AC 123 ms
54,280 KB
testcase_13 AC 180 ms
57,568 KB
testcase_14 AC 162 ms
54,532 KB
testcase_15 AC 296 ms
62,368 KB
testcase_16 AC 413 ms
70,816 KB
testcase_17 AC 1,361 ms
221,268 KB
testcase_18 AC 2,826 ms
224,576 KB
testcase_19 AC 855 ms
136,340 KB
testcase_20 AC 1,907 ms
154,100 KB
testcase_21 AC 2,063 ms
407,908 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();
    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(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