結果
問題 | No.402 最も海から遠い場所 |
ユーザー | vjudge1 |
提出日時 | 2024-11-10 20:20:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,013 bytes |
コンパイル時間 | 1,728 ms |
コンパイル使用メモリ | 173,316 KB |
実行使用メモリ | 121,308 KB |
最終ジャッジ日時 | 2024-11-10 20:20:47 |
合計ジャッジ時間 | 6,934 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
39,168 KB |
testcase_01 | AC | 11 ms
39,168 KB |
testcase_02 | WA | - |
testcase_03 | AC | 11 ms
39,040 KB |
testcase_04 | AC | 11 ms
39,040 KB |
testcase_05 | AC | 10 ms
39,040 KB |
testcase_06 | AC | 10 ms
39,040 KB |
testcase_07 | AC | 11 ms
39,040 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 11 ms
39,296 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 | 739 ms
121,308 KB |
testcase_20 | AC | 710 ms
47,868 KB |
testcase_21 | AC | 674 ms
84,912 KB |
ソースコード
#include<bits/stdc++.h> #define FL(i,a,b) for(int i=(a);i<=(b);i++) #define FR(i,a,b) for(int i=(a);i>=(b);i--) #define ll long long #define PII pair<int,int> using namespace std; const int MAXN = 3e3 + 10; const int inf = 0x3f3f3f3f; int dx[4]={0,1,0,-1}; int dy[4]={1,0,-1,0}; char c[MAXN][MAXN]; int dis[MAXN][MAXN]; int main(){ int H,W; scanf("%d%d",&H,&W); FL(i,1,H) FL(j,1,W) scanf(" %c",&c[i][j]); memset(dis,0x3f,sizeof(dis)); queue<PII>q; FL(i,0,H+1){ FL(j,0,W+1){ if(i<1||i>H||j<1||j>W||c[i][j]=='.') dis[i][j]=0,q.push({i,j}); } } int ans=0; while(!q.empty()){ PII u=q.front(); q.pop(); // printf("(%d,%d) %d\n",u.first,u.second,dis[u.first][u.second]); ans=max(ans,dis[u.first][u.second]); FL(i,0,3){ int x=u.first+dx[i],y=u.second+dy[i]; if(x<1||x>H||y<1||y>W) continue; if(dis[x][y]>dis[u.first][u.second]+1) dis[x][y]=dis[u.first][u.second]+1,q.push({x,y}); } } // FL(i,0,H+1){ // FL(j,0,W+1) printf("%d ",dis[i][j]); // puts(""); // } printf("%d\n",ans); }