結果

問題 No.402 最も海から遠い場所
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-03-07 01:34:29
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,598 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 516,224 KB
最終ジャッジ日時 2024-07-21 13:09:16
合計ジャッジ時間 9,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,240 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 59 ms
64,768 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 56 ms
63,744 KB
testcase_12 AC 42 ms
52,992 KB
testcase_13 AC 109 ms
77,980 KB
testcase_14 AC 99 ms
77,184 KB
testcase_15 AC 198 ms
84,736 KB
testcase_16 AC 265 ms
92,900 KB
testcase_17 AC 2,753 ms
308,076 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline
    class cs_2d():
        
        def __init__(self,x):
            
                n = len(x)
                m = len(x[0])
                tmp = [[0]*(m+1) for _ in range(n+1)]
                for i in range(n):
                    tmp[i+1][1:] = x[i]
                    for j in range(m):
                        tmp[i+1][j+1] += tmp[i+1][j]
                
                for j in range(m):
                    for i in range(n):
                        tmp[i+1][j+1] += tmp[i][j+1]
                        
                self.S = tmp
        
        def query(self,ix,jx,iy,jy):
            ##[ix,jx)×[iy,jy)
            
            T = self.S
            
            return T[jx][jy] - T[jx][iy] - T[ix][jy] + T[ix][iy]
            
            
    H,W = map(int,input().split())
    S = [list(map(lambda x : x == '.',input()))[:-1] for _ in range(H)]
    
    C = cs_2d(S)
    
    def is_ok(x,y,n):
        return C.query(x-n+1,x+n,y-n+1,y+n)==0
        
    ans = 1
    for i in range(1,H-1):
        for j in range(ans,W-ans):
            if S[i][j] == 1:
                continue
            L = min(i+1,j+1,H-i,W-j)
            if is_ok(i,j,L):
                ans = max(ans,L)
                continue
            if ans>L:
                continue
            y = L
            x = 1
            while y-x>1:
                mid = (y+x)//2
                if is_ok(i,j,mid):
                    x = mid
                else:
                    y = mid
            ans = max(ans,x)
    
    print(ans)
main()
    
0