結果

問題 No.402 最も海から遠い場所
ユーザー mint6421mint6421
提出日時 2019-08-22 00:11:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 592 ms / 3,000 ms
コード長 1,684 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 171,904 KB
実行使用メモリ 159,628 KB
最終ジャッジ日時 2023-07-31 13:21:39
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,480 KB
testcase_01 AC 2 ms
5,504 KB
testcase_02 AC 2 ms
5,632 KB
testcase_03 AC 2 ms
5,436 KB
testcase_04 AC 2 ms
5,512 KB
testcase_05 AC 2 ms
5,452 KB
testcase_06 AC 2 ms
5,432 KB
testcase_07 AC 2 ms
5,732 KB
testcase_08 AC 2 ms
5,492 KB
testcase_09 AC 2 ms
5,488 KB
testcase_10 AC 3 ms
5,504 KB
testcase_11 AC 2 ms
5,580 KB
testcase_12 AC 2 ms
5,564 KB
testcase_13 AC 6 ms
6,784 KB
testcase_14 AC 5 ms
8,684 KB
testcase_15 AC 24 ms
13,104 KB
testcase_16 AC 24 ms
15,352 KB
testcase_17 AC 383 ms
87,956 KB
testcase_18 AC 592 ms
94,332 KB
testcase_19 AC 152 ms
13,824 KB
testcase_20 AC 433 ms
86,736 KB
testcase_21 AC 354 ms
159,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define inf INT_MAX
#define INF LLONG_MAX
#define ll long long
#define ull unsigned long long
#define M (int)(1e9+7)
#define P pair<int,int>
#define PLL pair<ll,ll>
#define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++)
#define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n,0)
#define all(a) a.begin(),a.end()
#define IN(a,n) rep(i,n){ cin>>a[i]; }
const int vx[4] = {0,1,0,-1};
const int vy[4] = {1,0,-1,0};
#define PI 3.14159265
#define F first
#define S second
#define PB push_back
#define EB emplace_back
#define int ll
#define vi vector<int>


char s[3100][3100];
int d[3100][3100];
int ans=0;

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int h,w;
  cin>>h>>w;

  rep(i,h){
    cin>>s[i];
  }

  queue<P> q;


  FOR(i,-1,h+1){
    FOR(j,-1,w+1){
      if(s[i][j]=='.'||!(0<=i&&i<h&&0<=j&&j<w)){
        FOR(x,-1,2){
          FOR(y,-1,2){
            if(!(0<=i+y&&i+y<h&&0<=j+x&&j+x<w)) continue;
            if(d[y+i][x+j]) continue;
            if(s[y+i][x+j]=='.') continue;
            d[y+i][x+j]=1;
            ans=1;
            q.push(P(y+i,x+j));
          }
        }
      }
    }
  }
  //cout<<q.size()<<endl;

  while(!q.empty()){
    P p=q.front(); q.pop();
    FOR(i,-1,2){
      FOR(j,-1,2){
        int y=i+p.F,x=j+p.S;
        if(!(0<=x&&x<w&&0<=y&&y<h)) continue;
        if(d[y][x]) continue;
        if(s[y][x]=='.') continue;
        d[y][x]=d[p.F][p.S]+1;
        ans=max(ans,d[y][x]);
        q.push(P(y,x));
      }
    }
  }

  
  /*
  rep(i,h){
    rep(j,w){
      cout<<d[i][j]<<' ';
    }
    cout<<endl;
  }
  */

  cout<<ans<<endl;


}
0