結果

問題 No.402 最も海から遠い場所
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-03-07 01:26:55
言語 PyPy3
(7.3.13)
結果
TLE  
実行時間 -
コード長 1,413 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 720,380 KB
最終ジャッジ日時 2023-09-28 17:51:18
合計ジャッジ時間 11,467 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,312 KB
testcase_01 AC 74 ms
71,240 KB
testcase_02 AC 92 ms
76,364 KB
testcase_03 AC 75 ms
71,412 KB
testcase_04 AC 74 ms
71,144 KB
testcase_05 AC 75 ms
71,388 KB
testcase_06 AC 75 ms
71,272 KB
testcase_07 AC 74 ms
71,332 KB
testcase_08 AC 75 ms
71,244 KB
testcase_09 AC 76 ms
71,248 KB
testcase_10 AC 73 ms
71,272 KB
testcase_11 AC 91 ms
76,364 KB
testcase_12 AC 78 ms
71,228 KB
testcase_13 AC 140 ms
80,220 KB
testcase_14 AC 136 ms
78,756 KB
testcase_15 AC 229 ms
101,300 KB
testcase_16 AC 395 ms
108,456 KB
testcase_17 TLE -
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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(input())[:-1] for _ in range(H)]
for i in range(H):
    for j in range(W):
        S[i][j] = int(S[i][j]=='.')
  
  
  
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)
    
    
0