結果

問題 No.2456 Stamp Art
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-03 00:57:34
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,137 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 332,416 KB
最終ジャッジ日時 2024-05-05 12:13:40
合計ジャッジ時間 26,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 1,301 ms
314,240 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 RE -
testcase_06 AC 1,490 ms
322,176 KB
testcase_07 AC 1,505 ms
319,488 KB
testcase_08 AC 1,308 ms
311,040 KB
testcase_09 AC 1,638 ms
322,688 KB
testcase_10 AC 2,353 ms
318,208 KB
testcase_11 AC 1,529 ms
321,920 KB
testcase_12 AC 1,664 ms
302,208 KB
testcase_13 AC 2,169 ms
328,832 KB
testcase_14 AC 2,183 ms
325,248 KB
testcase_15 AC 1,242 ms
332,416 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 1,936 ms
310,656 KB
testcase_21 RE -
testcase_22 AC 1,879 ms
317,312 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

H, W = mi()
S = [os() for _ in range(H)]
v = [[0 for i in range(H+2)] for j in range(W+2)]
for i in range(1, H+1):
    for j in range(1, W+1):
        if S[i-1][j-1] == '#':
            v[i][j]+=1
        v[i][j] += v[i-1][j] + v[i][j-1] - v[i-1][j-1]

def solve(X):
    w = [[0 for i in range(H+3)] for j in range(W+3)]
    for i in range(1, H-X+2):
        for j in range(1, W-X+2):
            if v[i+X-1][j+X-1]-v[i+X-1][j-1]-v[i-1][j+X-1]+v[i-1][j-1] == X*X:
                w[i][j]+=1
                w[i+X][j]-=1
                w[i][j+X]-=1
                w[i+X][j+X]+=1

    for i in range(0, H+2):
        for j in range(1, W+2):
            w[i][j] += w[i][j-1]

    for i in range(1, H+2):
        for j in range(0, W+2):
            w[i][j] += w[i-1][j];

    for i in range(1, H+1):
        for j in range(1, W+1):
            if S[i-1][j-1] == '#' and w[i][j] == 0:
                return 0
    return 1

l=1
r=min(H, W)+1

while(r-l>1):
    c = (l+r)//2
    if solve(c):
        l=c
    else:
        r=c;

print(l)
0