結果

問題 No.2456 Stamp Art
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-03 00:47:00
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,138 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 332,828 KB
最終ジャッジ日時 2024-05-05 10:51:24
合計ジャッジ時間 25,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,800 KB
testcase_01 AC 35 ms
53,712 KB
testcase_02 RE -
testcase_03 AC 1,235 ms
314,656 KB
testcase_04 AC 34 ms
54,064 KB
testcase_05 RE -
testcase_06 AC 1,455 ms
321,908 KB
testcase_07 AC 1,457 ms
319,532 KB
testcase_08 AC 1,243 ms
311,036 KB
testcase_09 AC 1,577 ms
322,636 KB
testcase_10 AC 2,296 ms
318,156 KB
testcase_11 AC 1,500 ms
321,560 KB
testcase_12 AC 1,604 ms
301,556 KB
testcase_13 AC 2,071 ms
329,268 KB
testcase_14 AC 2,167 ms
325,280 KB
testcase_15 AC 1,258 ms
332,828 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 1,940 ms
310,604 KB
testcase_21 RE -
testcase_22 AC 1,840 ms
317,140 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

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+1)] for j in range(W+1)]
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+2)] for j in range(W+2)]
    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