結果

問題 No.402 最も海から遠い場所
ユーザー TawaraTawara
提出日時 2016-07-22 12:59:23
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,620 ms / 3,000 ms
コード長 836 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 232,696 KB
最終ジャッジ日時 2024-11-06 12:24:53
合計ジャッジ時間 10,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,928 KB
testcase_01 AC 78 ms
75,684 KB
testcase_02 AC 97 ms
77,728 KB
testcase_03 AC 76 ms
75,828 KB
testcase_04 AC 78 ms
75,516 KB
testcase_05 AC 77 ms
75,708 KB
testcase_06 AC 77 ms
75,528 KB
testcase_07 AC 77 ms
75,916 KB
testcase_08 AC 78 ms
75,652 KB
testcase_09 AC 77 ms
75,796 KB
testcase_10 AC 77 ms
75,664 KB
testcase_11 AC 92 ms
77,700 KB
testcase_12 AC 80 ms
75,528 KB
testcase_13 AC 178 ms
80,104 KB
testcase_14 AC 169 ms
79,536 KB
testcase_15 AC 247 ms
83,984 KB
testcase_16 AC 354 ms
86,884 KB
testcase_17 AC 1,011 ms
153,960 KB
testcase_18 AC 1,474 ms
232,696 KB
testcase_19 AC 1,239 ms
229,276 KB
testcase_20 AC 1,171 ms
230,140 KB
testcase_21 AC 1,620 ms
230,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
	H,W = map(int,raw_input().split())
 	S = [raw_input() for i in xrange(H)]
	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