結果

問題 No.2456 Stamp Art
ユーザー mymelochanmymelochan
提出日時 2023-09-03 03:05:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,305 ms / 5,000 ms
コード長 1,669 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 395,620 KB
最終ジャッジ日時 2024-06-12 08:04:59
合計ジャッジ時間 26,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,304 KB
testcase_01 AC 40 ms
55,684 KB
testcase_02 AC 40 ms
55,332 KB
testcase_03 AC 1,149 ms
350,128 KB
testcase_04 AC 42 ms
55,060 KB
testcase_05 AC 62 ms
67,564 KB
testcase_06 AC 1,409 ms
394,900 KB
testcase_07 AC 1,300 ms
364,712 KB
testcase_08 AC 1,125 ms
329,964 KB
testcase_09 AC 1,426 ms
347,912 KB
testcase_10 AC 2,305 ms
382,412 KB
testcase_11 AC 1,441 ms
395,620 KB
testcase_12 AC 1,514 ms
328,484 KB
testcase_13 AC 2,046 ms
343,196 KB
testcase_14 AC 2,165 ms
361,828 KB
testcase_15 AC 1,111 ms
347,276 KB
testcase_16 AC 829 ms
235,716 KB
testcase_17 AC 60 ms
68,892 KB
testcase_18 AC 44 ms
62,004 KB
testcase_19 AC 785 ms
292,556 KB
testcase_20 AC 1,809 ms
327,556 KB
testcase_21 AC 1,594 ms
337,712 KB
testcase_22 AC 1,665 ms
328,620 KB
testcase_23 AC 149 ms
83,140 KB
testcase_24 AC 238 ms
85,432 KB
testcase_25 AC 41 ms
55,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
#############################################################

N,M = lmin()
S = [input() for _ in range(N)]
S = [[0 if S[i][j] == "." else 1 for j in range(M)] for i in range(N)]

T = [[0]*(M+1) for _ in range(N+1)]

for i in range(N):
    for j in range(M):
        T[i+1][j+1] = T[i][j+1]+T[i+1][j]-T[i][j]+S[i][j]

def check(x):
    cnt = [[0]*(M+2) for _ in range(N+2)]
    for i in range(N-x+1):
        for j in range(M-x+1):
            #print(i,j,T[i+x+1][j+x+1]-T[i][j+x+1]-T[i+x+1][j]+T[i][j])
            if T[i+x][j+x]-T[i][j+x]-T[i+x][j]+T[i][j] == x**2:
                cnt[i+1][j+1] += 1
                cnt[i+1][j+x+1] -= 1
                cnt[i+x+1][j+1] -= 1
                cnt[i+x+1][j+x+1] += 1
    
    #print(cnt)
    
    for i in range(1,N+1):
        for j in range(1,M+1):
            cnt[i][j] += cnt[i][j-1]

    for i in range(1,N+1):
        for j in range(1,M+1):
            cnt[i][j] += cnt[i-1][j]


    #print(x,cnt)
    for i in range(1,N+1):
        for j in range(1,M+1):
            if S[i-1][j-1] and not cnt[i][j]:
                return False
    return True            

ok = 1
ng = min(N,M)+1

while ng-ok > 1:
    cen = (ok+ng)//2
    if check(cen):
        ok = cen
    else:
        ng = cen

print(ok)
0