結果
問題 | No.2456 Stamp Art |
ユーザー | 👑 p-adic |
提出日時 | 2023-08-20 10:01:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 14,008 KB |
最終ジャッジ日時 | 2024-05-07 17:02:34 |
合計ジャッジ時間 | 8,280 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,880 KB |
testcase_01 | AC | 28 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
I,R=input,range H,W=map(int,I().split()) X,Y=R(W),R(H) S=[[s<'.'for s in I()]for i in Y] C=[[0]*(W+1)for i in R(H+1)] c=[0]*(W+1) for i in Y: t=0 for j in X:C[i+1][j+1],t=c[j+1]+t+S[i][j],t+S[i][j] c=C[i+1][:] def r(k): D=[[0]*(W+1)for i in R(H+1)] for i in R(H-k+1): for j in R(W-k+1): if C[i+k][j+k]-C[i+k][j]-C[i][j+k]+C[i][j]==k*k:D[i+k][j+k],D[i+k][j],D[i][j+k],D[i][j]=D[i+k][j+k]+1,D[i+k][j]-1,D[i][j+k]-1,D[i][j]+1 c=[0]*W for i in Y: t=0 for j in X:D[i][j],t=c[j]+t+D[i][j],t+D[i][j] if any(S[i][j]>D[i][j]for j in X):return 1 c=D[i][:] return 0 A=[1,min(H,W)+1] while A[0]+1<A[1]: k=(A[0]+A[1])//2 A[r(k)]=k print(A[0])