結果
問題 | No.2456 Stamp Art |
ユーザー | mymelochan |
提出日時 | 2023-09-03 03:03:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,678 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 395,456 KB |
最終ジャッジ日時 | 2024-06-12 07:59:40 |
合計ジャッジ時間 | 22,995 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
55,620 KB |
testcase_01 | AC | 45 ms
55,688 KB |
testcase_02 | AC | 42 ms
55,064 KB |
testcase_03 | AC | 1,112 ms
350,120 KB |
testcase_04 | AC | 37 ms
54,932 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1,346 ms
395,012 KB |
testcase_07 | AC | 1,242 ms
364,636 KB |
testcase_08 | AC | 1,080 ms
329,896 KB |
testcase_09 | AC | 1,342 ms
347,752 KB |
testcase_10 | AC | 2,199 ms
382,404 KB |
testcase_11 | AC | 1,366 ms
395,456 KB |
testcase_12 | AC | 1,428 ms
328,980 KB |
testcase_13 | AC | 1,918 ms
343,064 KB |
testcase_14 | AC | 2,024 ms
362,436 KB |
testcase_15 | AC | 1,073 ms
346,940 KB |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | AC | 42 ms
61,736 KB |
testcase_19 | WA | - |
testcase_20 | AC | 1,765 ms
328,116 KB |
testcase_21 | RE | - |
testcase_22 | AC | 1,655 ms
328,640 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 39 ms
56,000 KB |
ソースコード
############################################################# 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] #print(T) 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,N+1): cnt[i][j] += cnt[i][j-1] for i in range(1,N+1): for j in range(1,N+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)