結果
問題 | No.402 最も海から遠い場所 |
ユーザー | vjudge1 |
提出日時 | 2024-11-10 10:43:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 720 bytes |
コンパイル時間 | 727 ms |
コンパイル使用メモリ | 53,888 KB |
実行使用メモリ | 129,596 KB |
最終ジャッジ日時 | 2024-11-10 10:43:39 |
合計ジャッジ時間 | 4,044 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 1 ms
5,248 KB |
testcase_06 | AC | 1 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 | 307 ms
129,596 KB |
testcase_20 | AC | 199 ms
20,992 KB |
testcase_21 | AC | 247 ms
76,004 KB |
ソースコード
#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() { 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<=4;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; }