結果

問題 No.402 最も海から遠い場所
ユーザー vjudge1vjudge1
提出日時 2024-11-10 10:47:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 3,000 ms
コード長 742 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 54,016 KB
実行使用メモリ 129,532 KB
最終ジャッジ日時 2024-11-10 10:48:00
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
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 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 15 ms
7,552 KB
testcase_16 AC 20 ms
8,832 KB
testcase_17 AC 253 ms
40,680 KB
testcase_18 AC 377 ms
26,624 KB
testcase_19 AC 461 ms
129,532 KB
testcase_20 AC 363 ms
20,896 KB
testcase_21 AC 397 ms
76,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<queue>
using namespace std;
const int N=3010,dx[10]={0,1,1,1,0,0,-1,-1,-1},dy[10]={0,-1,0,1,-1,1,-1,0,1}; char s[N][N]; bool vis[N][N];
struct P { int x,y,d; };
int main() {
  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(),ans=max(ans,p.d);
  	for(int i=1;i<=8;i++) {
  	  int xx=p.x+dx[i],yy=p.y+dy[i];
  	  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