結果
問題 | No.402 最も海から遠い場所 |
ユーザー | Tawara |
提出日時 | 2016-07-21 21:32:40 |
言語 | PyPy2 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 889 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 77,116 KB |
実行使用メモリ | 577,456 KB |
最終ジャッジ日時 | 2024-11-06 10:12:42 |
合計ジャッジ時間 | 11,372 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
75,556 KB |
testcase_01 | AC | 80 ms
75,408 KB |
testcase_02 | AC | 98 ms
78,076 KB |
testcase_03 | AC | 76 ms
75,564 KB |
testcase_04 | AC | 76 ms
75,532 KB |
testcase_05 | AC | 76 ms
75,424 KB |
testcase_06 | AC | 74 ms
75,272 KB |
testcase_07 | RE | - |
testcase_08 | AC | 75 ms
75,660 KB |
testcase_09 | AC | 75 ms
75,456 KB |
testcase_10 | RE | - |
testcase_11 | AC | 91 ms
77,852 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
ソースコード
H,W = map(int,raw_input().split()) assert 1 <= H <= 3000 assert 1 <= W <= 3000 S = [list(raw_input()) for i in xrange(H)] for s in S: assert len(s) == W assert s.count("#") + s.count(".") == W HD = [[W]*(W+2) for i in xrange(H+2)] VD = [[H]*(W+2) for i in xrange(H+2)] for i in xrange(H+2): for j in xrange(W+2): if not (0 < i <= H and 0 < j <= W) or S[i-1][j-1] == ".": HD[i][j] = VD[i][j] = 0 for i in xrange(1,H+1): for j in xrange(1,H+1): HD[i][j] = 1 + min(HD[i][j]-1,HD[i-1][j-1],HD[i][j-1],HD[i+1][j-1]) VD[i][j] = 1 + min(VD[i][j]-1,VD[i-1][j-1],VD[i-1][j],VD[i-1][j+1]) for i in xrange(H,0,-1): for j in xrange(W,0,-1): HD[i][j] = 1 + min(HD[i][j]-1,HD[i+1][j+1],HD[i][j+1],HD[i-1][j+1]) VD[i][j] = 1 + min(VD[i][j]-1,VD[i+1][j+1],VD[i+1][j],VD[i+1][j-1]) ans = 0 for i in xrange(1,H+1): for j in xrange(1,W+1): ans = max(ans,min(HD[i][j],VD[i][j])) print ans