結果

問題 No.2456 Stamp Art
ユーザー mymelochanmymelochan
提出日時 2023-09-03 03:05:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,669 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 395,504 KB
最終ジャッジ日時 2024-06-12 08:03:49
合計ジャッジ時間 26,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 44 ms
54,656 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 1,246 ms
349,952 KB
testcase_04 AC 45 ms
54,912 KB
testcase_05 WA -
testcase_06 AC 1,482 ms
394,624 KB
testcase_07 AC 1,387 ms
364,364 KB
testcase_08 AC 1,200 ms
330,064 KB
testcase_09 AC 1,483 ms
347,776 KB
testcase_10 AC 2,443 ms
382,336 KB
testcase_11 AC 1,514 ms
395,504 KB
testcase_12 AC 1,596 ms
328,960 KB
testcase_13 AC 2,136 ms
342,940 KB
testcase_14 AC 2,247 ms
361,984 KB
testcase_15 AC 1,180 ms
346,496 KB
testcase_16 RE -
testcase_17 WA -
testcase_18 AC 51 ms
61,824 KB
testcase_19 WA -
testcase_20 AC 1,961 ms
327,640 KB
testcase_21 RE -
testcase_22 AC 1,810 ms
328,192 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 46 ms
54,144 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,N+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