結果
問題 | No.402 最も海から遠い場所 |
ユーザー | vjudge1 |
提出日時 | 2024-11-12 15:30:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 2,340 ms |
コンパイル使用メモリ | 174,252 KB |
実行使用メモリ | 39,032 KB |
最終ジャッジ日時 | 2024-11-12 15:30:09 |
合計ジャッジ時間 | 6,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
38,912 KB |
testcase_01 | AC | 20 ms
38,912 KB |
testcase_02 | RE | - |
testcase_03 | AC | 18 ms
38,912 KB |
testcase_04 | AC | 17 ms
38,864 KB |
testcase_05 | AC | 19 ms
38,912 KB |
testcase_06 | AC | 17 ms
38,892 KB |
testcase_07 | AC | 18 ms
38,912 KB |
testcase_08 | AC | 20 ms
38,912 KB |
testcase_09 | AC | 18 ms
39,032 KB |
testcase_10 | AC | 20 ms
38,896 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=3010; int n,m,ans,dis[N][N]; string a[N]; queue<int> q; signed main(){ ios::sync_with_stdio(0); cin>>n>>m; for(int i=0;i<=m+1;i++){ a[0][i]='.'; a[n+1][i]='.'; } for(int i=1;i<=n;i++){ cin>>a[i]; a[i]="."+a[i]+"."; } memset(dis,0x3f,sizeof(dis)); for(int i=0;i<=n+1;i++){ for(int j=0;j<=m+1;j++){ if(a[i][j]=='.') dis[i][j]=0,q.push(i*N+j); } } while(!q.empty()){ int now=q.front(),i=now/N,j=now%N; q.pop(); for(int nxt=0;nxt<=8;nxt++){ int ni=i+(nxt/3-1),nj=j+(nxt%3-1); if(ni<0||ni>n+1||nj<0||nj>m+1) continue; if(dis[ni][nj]>dis[i][j]+1){ dis[ni][nj]=dis[i][j]+1; ans=max(ans,dis[ni][nj]); q.push(ni*N+nj); } } } cout<<ans<<'\n'; return 0; }