結果

問題 No.402 最も海から遠い場所
ユーザー AquariusAquarius
提出日時 2019-10-15 16:16:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,473 ms / 3,000 ms
コード長 1,372 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 177,452 KB
実行使用メモリ 482,404 KB
最終ジャッジ日時 2024-12-29 17:16:20
合計ジャッジ時間 9,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 9 ms
5,504 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 38 ms
12,288 KB
testcase_16 AC 53 ms
15,872 KB
testcase_17 AC 629 ms
131,728 KB
testcase_18 AC 1,225 ms
63,316 KB
testcase_19 AC 1,473 ms
482,404 KB
testcase_20 AC 1,092 ms
39,296 KB
testcase_21 AC 1,213 ms
264,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const short inf = 3e4;

using PP = pair<short, short>;
int h, w;
short a[3002][3002];
string s[3002];
int main() {
  cin >> h >> w;
  s[0] = string(w + 2, '.');
  s[h + 1] = string(w + 2, '.');
  for (int i = 0; i < h; ++i) {
    string t;
    cin >> t;
    s[i + 1] = '.' + t + '.';
  }
  
  for (int i = 0; i < h + 2; ++i) {
    for (int j = 0; j < w + 2; ++j) {
      a[i][j] = inf;
    }
  }
  
  queue<pair<short, PP>> q;
  for (int i = 0; i < h + 2; ++i) {
    for (int j = 0; j < w + 2; ++j) {
      if (i == 0 || i == h + 1
       || j == 0 || j == w + 1
       || s[i][j] == '.') {
        q.push(make_pair(0, PP(i, j)));
      }
    }
  }
  
  const int di[] = { -1, -1, -1, 0, 0, 1, 1, 1 };
  const int dj[] = { -1, 0, 1, -1, 1, -1, 0, 1 };
  while (!q.empty()) {
    auto p = q.front(); q.pop();
    short d = p.first;
    int i = p.second.first;
    int j = p.second.second;
    if (a[i][j] != inf) continue;
    a[i][j] = d;
    
    for (int k = 0; k < 8; ++k) {
      int ni = i + di[k];
      int nj = j + dj[k];
      if (ni < 0 || ni >= h + 2) continue;
      if (nj < 0 || nj >= w + 2) continue;
      q.push(make_pair(d + 1, PP(ni, nj)));
    }
  }
  
  short mx = 0;
  for (int i = 0; i < h + 2; ++i) {
    for (int j = 0; j < w + 2; ++j) {
      mx = max(mx, a[i][j]);
    }
  }
  cout << mx << endl;
}
0