結果

問題 No.402 最も海から遠い場所
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 15:20:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 81,696 KB
最終ジャッジ日時 2024-11-18 20:44:44
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,808 KB
testcase_01 AC 46 ms
55,808 KB
testcase_02 AC 56 ms
64,128 KB
testcase_03 AC 46 ms
55,484 KB
testcase_04 AC 46 ms
55,680 KB
testcase_05 AC 48 ms
55,680 KB
testcase_06 AC 47 ms
55,168 KB
testcase_07 AC 47 ms
55,936 KB
testcase_08 AC 45 ms
55,680 KB
testcase_09 AC 46 ms
55,424 KB
testcase_10 AC 48 ms
55,296 KB
testcase_11 AC 59 ms
65,024 KB
testcase_12 AC 49 ms
56,064 KB
testcase_13 AC 65 ms
70,528 KB
testcase_14 AC 68 ms
69,504 KB
testcase_15 AC 86 ms
77,176 KB
testcase_16 AC 86 ms
76,800 KB
testcase_17 AC 272 ms
78,592 KB
testcase_18 AC 332 ms
81,696 KB
testcase_19 AC 246 ms
81,340 KB
testcase_20 AC 328 ms
81,632 KB
testcase_21 AC 316 ms
81,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

H,W = map(int,input().split())
M = 1
dp0 = list(input())[:-1]
dp0 = [int(i=='#') for i in dp0]
for _ in range(H-1):
    dp1 = list(input())[:-1]
    dp1 = [int(i=='#') for i in dp1]
    for j in range(1,W):
        if dp1[j]==1:
            dp1[j] = min(dp1[j-1],dp0[j],dp0[j-1])+1
            M = max(M,dp1[j])
    dp0 = dp1[:]
print((M+1)//2)
0