結果

問題 No.402 最も海から遠い場所
ユーザー しらっ亭しらっ亭
提出日時 2016-07-22 22:51:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2,559 ms / 3,000 ms
コード長 2,226 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 173,936 KB
実行使用メモリ 244,636 KB
最終ジャッジ日時 2023-08-06 09:55:13
合計ジャッジ時間 12,106 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
38,888 KB
testcase_01 AC 11 ms
38,756 KB
testcase_02 AC 12 ms
39,068 KB
testcase_03 AC 11 ms
38,828 KB
testcase_04 AC 11 ms
38,860 KB
testcase_05 AC 11 ms
38,856 KB
testcase_06 AC 12 ms
38,932 KB
testcase_07 AC 12 ms
38,752 KB
testcase_08 AC 12 ms
38,956 KB
testcase_09 AC 12 ms
38,732 KB
testcase_10 AC 12 ms
38,888 KB
testcase_11 AC 12 ms
38,788 KB
testcase_12 AC 11 ms
38,972 KB
testcase_13 AC 20 ms
39,040 KB
testcase_14 AC 15 ms
39,036 KB
testcase_15 AC 56 ms
40,252 KB
testcase_16 AC 88 ms
41,792 KB
testcase_17 AC 957 ms
93,816 KB
testcase_18 AC 2,559 ms
55,312 KB
testcase_19 AC 1,814 ms
244,636 KB
testcase_20 AC 1,533 ms
48,572 KB
testcase_21 AC 1,737 ms
148,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define _p(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define _overload3(_1,_2,_3,name,...) name
#define _rep2(i,n) _rep3(i,0,n)
#define _rep3(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,_rep3,_rep2,)(__VA_ARGS__)
#define _rrep2(i,n) _rrep3(i,0,n)
#define _rrep3(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__)
#define ALL(x) (x).begin(), (x).end()
#define BIT(n) (1LL<<(n))
#define SZ(x) ((int)(x).size())
#define fst first
#define snd second
typedef vector<int> vi;typedef vector<vi> vvi;typedef pair<int,int> pii;typedef vector<pii> vpii;
typedef long long ll;

int H, W;
int D[3000][3000];
string M[3000];

int DY[8] = {1, 0, -1, 0, 1, 1, -1, -1};
int DX[8] = {0, 1, 0, -1, 1, -1, 1, -1};

template<typename T> inline bool inside(T y, T x, T h, T w) { return 0 <= y && y < h && 0 <= x && x < w; };

void Main() {
  cin >> H >> W;
  rep(y,H) cin >> M[y];

  memset(D, 0x3f, sizeof(D));

  priority_queue<pair<int, pii>, vector<pair<int, pii>>, greater<pair<int, pii>> > q;

  rep(y,H) {
    if (M[y][0] != '.') {
      D[y][0] = 1;
      q.push({1, {y,0}});
    }
    if (M[y][W-1] != '.') {
      D[y][W-1] = 1;
      q.push({1, {y,W-1}});
    }
  }

  rep(x,W) {
    if (M[0][x] != '.') {
      D[0][x] = 1;
      q.push({1, {0,x}});
    }
    if (M[H-1][x] != '.') {
      D[H-1][x] = 1;
      q.push({1, {H-1,x}});
    }
  }

  rep(y,H) rep(x,W) {
    if (M[y][x] == '.') {
      D[y][x] = 0;
      q.push({0,{y,x}});
    }
  }

  while (!q.empty()) {
    int c = q.top().first;
    int y = q.top().second.first;
    int x = q.top().second.second;
    q.pop();

    if (D[y][x] < c) continue;

    rep(i, 8) {
      int ny = y + DY[i];
      int nx = x + DX[i];
      if (!inside(ny, nx, H, W)) continue;
      int nc = c + 1;
      if (D[ny][nx] > nc) {
        D[ny][nx] = nc;
        q.push({nc, {ny, nx}});
      }
    }
  }

  int ma = 0;
  rep(y,H) {
    rep(x,W) {
      //_p(" %d", D[y][x]);
      ma = max(ma, D[y][x]);
    }
    //_p("\n");
  }
  _p("%d\n", ma);
}
int main() { cin.tie(0); ios::sync_with_stdio(false); Main(); return 0; }
0