結果
問題 | No.402 最も海から遠い場所 |
ユーザー | snrnsidy |
提出日時 | 2021-09-12 21:31:07 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 678 ms / 3,000 ms |
コード長 | 1,138 bytes |
コンパイル時間 | 2,497 ms |
コンパイル使用メモリ | 205,716 KB |
実行使用メモリ | 121,080 KB |
最終ジャッジ日時 | 2024-06-24 16:46:17 |
合計ジャッジ時間 | 7,023 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
38,656 KB |
testcase_01 | AC | 27 ms
38,656 KB |
testcase_02 | AC | 27 ms
39,040 KB |
testcase_03 | AC | 27 ms
38,656 KB |
testcase_04 | AC | 27 ms
38,656 KB |
testcase_05 | AC | 27 ms
38,656 KB |
testcase_06 | AC | 27 ms
38,784 KB |
testcase_07 | AC | 27 ms
38,656 KB |
testcase_08 | AC | 35 ms
38,656 KB |
testcase_09 | AC | 27 ms
38,656 KB |
testcase_10 | AC | 27 ms
38,656 KB |
testcase_11 | AC | 27 ms
38,784 KB |
testcase_12 | AC | 27 ms
38,656 KB |
testcase_13 | AC | 30 ms
39,296 KB |
testcase_14 | AC | 28 ms
39,424 KB |
testcase_15 | AC | 40 ms
41,088 KB |
testcase_16 | AC | 46 ms
41,728 KB |
testcase_17 | AC | 258 ms
62,080 KB |
testcase_18 | AC | 678 ms
51,352 KB |
testcase_19 | AC | 428 ms
121,080 KB |
testcase_20 | AC | 434 ms
47,616 KB |
testcase_21 | AC | 399 ms
84,428 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int h,w; char board[3005][3005]; int visited[3005][3005]; int dy[8] = {-1,-1,0,1,1,1,0,-1}; int dx[8] = {0,1,1,1,0,-1,-1,-1}; int main(void) { cin.tie(0); ios::sync_with_stdio(false); cin >> h >> w; for(int i=0;i<=h+1;i++) { for(int j=0;j<=w+1;j++) { board[i][j] = '.'; } } for(int i=1;i<=h;i++) { for(int j=1;j<=w;j++) { cin >> board[i][j]; } } h += 1; w += 1; memset(visited,-1,sizeof(visited)); queue <pair<int,int>> que; for(int i=0;i<=h;i++) { for(int j=0;j<=w;j++) { if(board[i][j]=='.') { visited[i][j] = 0; que.push(make_pair(i,j)); } } } while(!que.empty()) { int y = que.front().first; int x = que.front().second; que.pop(); for(int k=0;k<8;k++) { int ny = y + dy[k]; int nx = x + dx[k]; if(ny<0 || ny>h || nx<0 || nx>w) continue; if(visited[ny][nx]==-1) { visited[ny][nx] = visited[y][x] + 1; que.push(make_pair(ny,nx)); } } } int res = 0; for(int i=0;i<=h;i++) { for(int j=0;j<=w;j++) { res = max(res,visited[i][j]); } } cout << res <<'\n'; return 0; }