結果

問題 No.402 最も海から遠い場所
ユーザー vjudge1vjudge1
提出日時 2024-11-10 10:46:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 53,888 KB
実行使用メモリ 129,540 KB
最終ジャッジ日時 2024-11-10 10:46:26
合計ジャッジ時間 3,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 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 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,248 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 330 ms
129,540 KB
testcase_20 AC 227 ms
20,992 KB
testcase_21 AC 266 ms
75,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<queue>
using namespace std;
const int N=3010,dx[5]={0,1,-1,0,0},dy[5]={0,0,0,1,-1}; char s[N][N]; bool vis[N][N];
struct P { int x,y,d; };
int main() {
  //freopen("refuge.in","r",stdin);
  //freopen("refuge.out","w",stdout);
  int n,m; scanf("%d %d",&n,&m);
  for(int i=0;i<=m+1;i++) s[0][i]=s[n+1][i]='.';
  for(int i=1;i<=n;i++) scanf("%s",s[i]+1),s[i][0]=s[i][m+1]='.';
  queue<P>q;
  for(int i=0;i<=n+1;i++) for(int j=0;j<=m+1;j++) if(s[i][j]=='.') q.push((P){i,j,0}),vis[i][j]=true;
  int ans=0;
  while(!q.empty()) {
  	P p=q.front(); q.pop();
  	for(int i=1;i<=4;i++) {
  	  int xx=p.x+dx[i],yy=p.y+dy[i]; ans=max(ans,p.d);
  	  if(xx>=0&&xx<=n+1&&yy>=0&&yy<=m+1&&!vis[xx][yy]) q.push((P){xx,yy,p.d+1}),vis[xx][yy]=true;
	}
  }
  printf("%d",ans);
  return 0;
}
0