結果

問題 No.2456 Stamp Art
ユーザー detteiuudetteiuu
提出日時 2024-12-22 07:42:58
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,734 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 649,092 KB
最終ジャッジ日時 2024-12-22 07:43:57
合計ジャッジ時間 56,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,932 KB
testcase_01 AC 42 ms
54,196 KB
testcase_02 AC 44 ms
54,340 KB
testcase_03 MLE -
testcase_04 AC 41 ms
52,344 KB
testcase_05 AC 59 ms
67,308 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 1,840 ms
326,628 KB
testcase_17 AC 67 ms
69,052 KB
testcase_18 AC 46 ms
60,320 KB
testcase_19 AC 2,197 ms
489,600 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 212 ms
93,956 KB
testcase_24 AC 387 ms
119,480 KB
testcase_25 AC 40 ms
52,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class cum2:
    def __init__(self, A):
        self.cum = [[0]*(len(A[0])+1) for _ in range(len(A)+1)]
        for i in range(len(A)):
            for j in range(len(A[0])):
                self.cum[i+1][j+1] = A[i][j]
        for i in range(1, len(A)+1):
            for j in range(2, len(A[0])+1):
                self.cum[i][j] += self.cum[i][j-1]
        for i in range(2, len(A)+1):
            for j in range(1, len(A[0])+1):
                self.cum[i][j] += self.cum[i-1][j]
    def query(self, lh, lw, rh, rw):
        return self.cum[rh+1][rw+1]+self.cum[lh][lw]-self.cum[rh+1][lw]-self.cum[lh][rw+1]

H, W = map(int, input().split())
S = [list(input()) for _ in range(H)]

def func(n):
    imos = [[0]*(W+1) for _ in range(H+1)]
    for i in range(H-n+1):
        for j in range(W-n+1):
            if cum.query(i, j, i+n-1, j+n-1) == n**2:
                imos[i][j] += 1
                imos[i+n][j+n] += 1
                imos[i][j+n] -= 1
                imos[i+n][j] -= 1
    for i in range(H+1):
        for j in range(1, W+1):
            imos[i][j] += imos[i][j-1]
    for i in range(1, H+1):
        for j in range(W+1):
            imos[i][j] += imos[i-1][j]
    imos.pop()
    for i in range(H):
        for j in range(W):
            if 1 <= imos[i][j]:
                imos[i][j] = "#"
            else:
                imos[i][j] = "."
        imos[i].pop()
    flag = imos == S
    del imos
    return flag

C = [[0]*W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if S[i][j] == "#":
            C[i][j] = 1
cum = cum2(C)
del C

left = 1
right = min(H, W)+1
while left+1 < right:
    mid = (left+right)//2
    if func(mid):
        left = mid
    else:
        right = mid

print(left)
0