結果

問題 No.402 最も海から遠い場所
ユーザー rpy3cpprpy3cpp
提出日時 2016-07-24 00:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 3,000 ms
コード長 799 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 226,532 KB
最終ジャッジ日時 2024-11-06 15:37:32
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 47 ms
59,904 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
52,336 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 42 ms
52,608 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 47 ms
59,008 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 60 ms
66,176 KB
testcase_14 AC 61 ms
67,072 KB
testcase_15 AC 79 ms
77,896 KB
testcase_16 AC 85 ms
78,528 KB
testcase_17 AC 307 ms
148,652 KB
testcase_18 AC 517 ms
226,532 KB
testcase_19 AC 379 ms
223,052 KB
testcase_20 AC 528 ms
226,336 KB
testcase_21 AC 431 ms
222,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    H, W = map(int, input().split())
    S = [input() for i in range(H)]
    return H, W, S

def solve(H, W, S):
    dist = [[float('inf')] * W for i in range(H)]
    for w in range(W):
        if S[0][w] == '#':
            dist[0][w] = 1
        else:
            dist[0][w] = 0
    for h in range(1, H):
        Sh = S[h]
        disth = dist[h]
        disthm = dist[h - 1]
        for w, c in enumerate(Sh):
            if c == '#':
                if w:
                    disth[w] = min(disth[w - 1], disthm[w - 1], disthm[w]) + 1
                else:
                    disth[w] = 1
            else:
                disth[w] = 0
    maxd = 0
    for row in dist:
        maxd = max(maxd, max(row))
    return (maxd + 1) // 2

H, W, S = read_data()
print(solve(H, W, S))
0