結果
問題 | No.402 最も海から遠い場所 |
ユーザー | pekempey |
提出日時 | 2016-07-22 22:34:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 687 ms / 3,000 ms |
コード長 | 1,041 bytes |
コンパイル時間 | 2,682 ms |
コンパイル使用メモリ | 172,280 KB |
実行使用メモリ | 121,204 KB |
最終ジャッジ日時 | 2024-11-06 12:42:16 |
合計ジャッジ時間 | 5,912 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 5 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 17 ms
6,816 KB |
testcase_16 | AC | 23 ms
6,820 KB |
testcase_17 | AC | 285 ms
42,536 KB |
testcase_18 | AC | 687 ms
51,584 KB |
testcase_19 | AC | 478 ms
121,204 KB |
testcase_20 | AC | 531 ms
47,744 KB |
testcase_21 | AC | 464 ms
84,708 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h, w; cin >> h >> w; vector<string> g(h + 2, string(w + 2, '.')); for (int i = 0; i < h; i++) { string s; cin >> s; for (int j = 0; j < w; j++) { g[i + 1][j + 1] = s[j]; } } h += 2; w += 2; vector<vector<int>> dist(h, vector<int>(w, -1)); queue<pair<int, int>> q; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (g[i][j] != '#') { dist[i][j] = 0; q.emplace(i, j); } } } while (!q.empty()) { int y, x; tie(y, x) = q.front(); q.pop(); const int dy[] = { 0, 0, 1, 1, 1, -1, -1, -1 }; const int dx[] = { 1, -1, 1, 0, -1, 1, 0, -1 }; for (int k = 0; k < 8; k++) { int ny = y + dy[k]; int nx = x + dx[k]; if (ny < 0 || nx < 0 || ny >= h || nx >= w) continue; if (dist[ny][nx] == -1) { dist[ny][nx] = dist[y][x] + 1; q.emplace(ny, nx); } } } int maxi = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { maxi = max(maxi, dist[i][j]); } } cout << maxi << endl; }