結果

問題 No.2456 Stamp Art
ユーザー detteiuudetteiuu
提出日時 2024-12-22 07:31:13
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,841 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 880,956 KB
最終ジャッジ日時 2024-12-22 07:32:44
合計ジャッジ時間 79,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,728 KB
testcase_01 MLE -
testcase_02 AC 40 ms
53,636 KB
testcase_03 MLE -
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 64 ms
65,536 KB
testcase_06 TLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 TLE -
testcase_16 AC 3,025 ms
510,216 KB
testcase_17 AC 73 ms
72,064 KB
testcase_18 AC 45 ms
58,880 KB
testcase_19 MLE -
testcase_20 MLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 AC 577 ms
96,968 KB
testcase_24 AC 427 ms
128,292 KB
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

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):
    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
    for i in range(H):
        for j in range(W):
            imos[i][j] = 0
        imos[i].append(0)
    imos.append([0]*(W+1))
    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)

imos = [[0]*(W+1) for _ in range(H+1)]
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