結果
問題 | No.402 最も海から遠い場所 |
ユーザー | vjudge1 |
提出日時 | 2024-11-10 10:45:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 794 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 53,888 KB |
実行使用メモリ | 129,640 KB |
最終ジャッジ日時 | 2024-11-10 10:45:59 |
合計ジャッジ時間 | 3,061 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 11 ms
7,296 KB |
testcase_16 | WA | - |
testcase_17 | AC | 159 ms
40,680 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#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]; 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,ans=max(ans,p.d); } } printf("%d",ans); return 0; }