結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 1,269 ms
314,740 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 RE -
testcase_06 AC 1,436 ms
321,792 KB
testcase_07 AC 1,546 ms
319,488 KB
testcase_08 AC 1,394 ms
311,096 KB
testcase_09 AC 1,770 ms
322,628 KB
testcase_10 AC 2,530 ms
317,824 KB
testcase_11 AC 1,530 ms
321,280 KB
testcase_12 AC 1,602 ms
301,652 KB
testcase_13 AC 2,072 ms
329,212 KB
testcase_14 AC 2,126 ms
324,768 KB
testcase_15 AC 1,218 ms
332,620 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 1,937 ms
310,252 KB
testcase_21 RE -
testcase_22 AC 2,083 ms
316,968 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 34 ms
52,224 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