結果
問題 | No.402 最も海から遠い場所 |
ユーザー | kimiyuki |
提出日時 | 2016-07-22 22:58:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,134 ms / 3,000 ms |
コード長 | 1,622 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 66,688 KB |
実行使用メモリ | 113,120 KB |
最終ジャッジ日時 | 2024-11-06 12:55:50 |
合計ジャッジ時間 | 6,563 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 3 ms
6,816 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,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 7 ms
6,816 KB |
testcase_14 | AC | 4 ms
6,816 KB |
testcase_15 | AC | 29 ms
6,816 KB |
testcase_16 | AC | 40 ms
6,820 KB |
testcase_17 | AC | 508 ms
38,480 KB |
testcase_18 | AC | 1,134 ms
43,392 KB |
testcase_19 | AC | 952 ms
113,120 KB |
testcase_20 | AC | 960 ms
39,808 KB |
testcase_21 | AC | 917 ms
76,600 KB |
ソースコード
#include <cstdio> #include <vector> #include <queue> #include <tuple> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) using namespace std; template <typename T, typename X> auto vectors(T a, X x) { return vector<T>(x, a); } template <typename T, typename X, typename Y, typename... Zs> auto vectors(T a, X x, Y y, Zs... zs) { auto cont = vectors(a, y, zs...); return vector<decltype(cont)>(x, cont); } int main() { // input int h, w; scanf("%d%d", &h, &w); vector<vector<bool> > is_sea = vectors<bool>(false, h+2, w+2); repeat_from (y,1,h+1) { repeat_from (x,1,w+1) { char c; scanf(" %c", &c); is_sea[y][x] = c == '#'; } } // compute vector<vector<int> > dist = vectors<int>(-1, h+2, w+2); queue<pair<int,int> > que; repeat (y,h+2) { repeat (x,w+2) { if (not is_sea[y][x]) { dist[y][x] = 0; que.emplace(y, x); } } } int ans = -1; while (not que.empty()) { int y, x; tie(y, x) = que.front(); que.pop(); ans = dist[y][x]; for (int dy : { -1, 0, 1 }) { for (int dx : { -1, 0, 1 }) { int ny = y + dy; int nx = x + dx; if (ny < 0 or h+2 <= ny or nx < 0 or w+2 <= nx) continue; if (dist[ny][nx] == -1) { dist[ny][nx] = dist[y][x] + 1; que.emplace(ny, nx); } } } } // output printf("%d\n", ans); return 0; }