結果

問題 No.2456 Stamp Art
ユーザー ゼットゼット
提出日時 2023-09-01 23:46:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,331 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 113,812 KB
最終ジャッジ日時 2024-06-11 06:01:04
合計ジャッジ時間 11,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 565 ms
112,160 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 546 ms
112,164 KB
testcase_07 AC 330 ms
112,600 KB
testcase_08 AC 2,385 ms
113,812 KB
testcase_09 AC 537 ms
112,608 KB
testcase_10 AC 552 ms
112,512 KB
testcase_11 AC 562 ms
112,392 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 575 ms
112,416 KB
testcase_15 AC 528 ms
112,264 KB
testcase_16 RE -
testcase_17 WA -
testcase_18 AC 40 ms
59,264 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 AC 480 ms
112,104 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 35 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[input() for i in range(H)]
v=[[0]*W for i in range(H)]
for i in range(H):
  for j in range(W):
    if S[i][j]=='#':
      v[i][j]+=1
for i in range(H):
  for j in range(1,W):
    v[i][j]=v[i][j-1]+v[i][j]
for i in range(1,H):
  for j in range(W):
    v[i][j]=v[i-1][j]+v[i][j]
result=10**10
DX=[1,1,-1,-1]
DY=[1,-1,1,-1]
for i in range(H):
  for j in range(H):
    if S[i][j]=='.':
      continue
    for dx,dy in zip(DX,DY):
      x=i-dx
      y=j-dy
      t=0
      if x<0 or x>=H:
        t+=1
      else:
        if S[x][j]=='.':
          t+=1
      if y<0 or y>=W:
        t+=1
      else:
        if S[i][y]=='.':
          t+=1
      if t==2:
        l=1
        r=2000
        while True:
          m=(l+r+1)//2
          i2,j2=i+dx*(m-1),j+dy*(m-1)
          if i2<0 or i2>=H or j2<0 or j2>=W:
            r=m-1
          else:
            j3=max(j,j2)
            j4=min(j,j2)
            i3=max(i,i2)
            i4=min(i,i2)
            ans=v[i3][j3]
            if j4>0:
              ans-=v[i3][j4-1]
            if i4>0:
              ans-=v[i4-1][j3]
            if i4>0 and j4>0:
              ans+=v[i4-1][j4-1]
            if ans==m**2:
              l=m
            else:
              r=m-1
          if l==r:
            break
        result=min(result,l)
print(result)
      
0