結果
問題 | No.402 最も海から遠い場所 |
ユーザー | haruteru |
提出日時 | 2016-07-26 13:01:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,375 bytes |
コンパイル時間 | 554 ms |
コンパイル使用メモリ | 57,568 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-11-06 16:56:06 |
合計ジャッジ時間 | 6,158 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 5 ms
5,248 KB |
testcase_14 | AC | 4 ms
5,248 KB |
testcase_15 | AC | 19 ms
6,400 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 956 ms
38,784 KB |
testcase_20 | AC | 959 ms
38,784 KB |
testcase_21 | AC | 952 ms
38,664 KB |
ソースコード
#include <iostream> #include <string> using namespace std; #define MAX (3000) int H, W; int S[MAX+2][MAX+2]; int fn(int h, int w, int (*inc)(int &,int &)) { int *p = &S[h][w]; if (inc(h, w)) { *p = min(*p, 1); } else { *p = min(*p, fn(h, w, inc) + 1); } return *p; } int main() { cin >> H; cin >> W; for (int h = 0; h < H; h++) { string s; cin >> s; for (int w = 0; w < W; w++) { if (s[w] == '.') { S[h][w] = 0; } else { S[h][w] = MAX; } } } for (int h = 0; h < H; h++) { fn(h, 0, [](int &hh, int &ww)->int { if (++ww >= W) return -1; return 0; }); fn(h, W-1, [](int &hh, int &ww)->int { if (--ww < 0) return -1; return 0; }); fn(h, 0, [](int &hh, int &ww)->int { if (++hh >= H || ++ww >= W) return -1; return 0; }); fn(h, 0, [](int &hh, int &ww)->int { if (--hh < 0 || ++ww >= W) return -1; return 0; }); fn(h, W-1, [](int &hh, int &ww)->int { if (--hh < 0 || ++ww >= W) return -1; return 0; }); fn(h, W-1, [](int &hh, int &ww)->int { if (++hh >= H || ++ww >= W) return -1; return 0; }); } for (int w = 0; w < W; w++) { fn(0, w, [](int &hh, int &ww)->int { if (++hh >= H) return -1; return 0; }); fn(H-1, w, [](int &hh, int &ww)->int { if (--hh < 0) return -1; return 0; }); fn(0, w, [](int &hh, int &ww)->int { if (++hh >= H || ++ww >= W) return -1; return 0; }); fn(0, w, [](int &hh, int &ww)->int { if (++hh >= H || --ww < 0) return -1; return 0; }); fn(H-1, w, [](int &hh, int &ww)->int { if (--hh < 0 || ++ww >= W) return -1; return 0; }); fn(H-1, w, [](int &hh, int &ww)->int { if (--hh < 0 || --ww < 0) return -1; return 0; }); } int ans = 0; for (int h = 0; h < H; h++) { for (int w = 0; w < W; w++) { ans = max(ans, S[h][w]); } } cout << ans << endl; }