結果

問題 No.402 最も海から遠い場所
ユーザー TawaraTawara
提出日時 2016-07-22 13:17:00
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 931 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 13,648 KB
最終ジャッジ日時 2024-11-06 12:27:45
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,636 KB
testcase_01 AC 11 ms
6,820 KB
testcase_02 AC 20 ms
6,820 KB
testcase_03 AC 11 ms
6,820 KB
testcase_04 AC 11 ms
6,816 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 11 ms
6,820 KB
testcase_07 AC 11 ms
6,816 KB
testcase_08 AC 11 ms
6,820 KB
testcase_09 AC 11 ms
6,820 KB
testcase_10 AC 11 ms
6,816 KB
testcase_11 AC 15 ms
6,816 KB
testcase_12 AC 13 ms
6,816 KB
testcase_13 AC 119 ms
6,912 KB
testcase_14 AC 51 ms
6,820 KB
testcase_15 AC 745 ms
10,240 KB
testcase_16 AC 860 ms
12,032 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
	H,W = map(int,raw_input().split())
	S = []
	elem = {".","#"}
	for i in xrange(H):
		s = raw_input()
		assert len(s) == W
		assert len(elem | set(s)) == 2
 		S.append(s)
	VD = [[H]*(W+2) for i in xrange(H+2)]
	HD = [[W]*(H+2) for j in xrange(W+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] == ".":
				VD[i][j] = HD[j][i] = 0

	for i in xrange(1,H+1):
		for j in xrange(1,W+1):
			VD[i][j] = 1 + min(VD[i][j]-1,VD[i-1][j-1],VD[i-1][j],VD[i-1][j+1])
			VD[H+1-i][j] = 1 + min(VD[H+1-i][j]-1,VD[H+2-i][j-1],VD[H+2-i][j],VD[H+2-i][j+1])
	for j in xrange(1,W+1):
		for i in xrange(1,H+1):
			HD[j][i] = 1 + min(HD[j][i]-1,HD[j-1][i-1],HD[j-1][i],HD[j-1][i+1])
			HD[W+1-j][i] = 1 + min(HD[W+1-j][i]-1,HD[W+2-j][i-1],HD[W+2-j][i],HD[W+2-j][i+1])
	ans = 0
	for i in xrange(1,H+1):
		for j in xrange(1,W+1):
			ans = max(ans,min(VD[i][j],HD[j][i]))
	print ans
solve()
0