結果

問題 No.2641 draw X
ユーザー ゼットゼット
提出日時 2024-02-19 22:42:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,332 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 149,544 KB
最終ジャッジ日時 2024-09-29 02:33:47
合計ジャッジ時間 11,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,272 KB
testcase_01 AC 38 ms
54,004 KB
testcase_02 AC 38 ms
52,776 KB
testcase_03 AC 37 ms
53,076 KB
testcase_04 AC 38 ms
52,552 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 38 ms
54,216 KB
testcase_08 AC 38 ms
53,632 KB
testcase_09 AC 38 ms
53,688 KB
testcase_10 AC 39 ms
52,396 KB
testcase_11 AC 38 ms
52,468 KB
testcase_12 AC 39 ms
52,748 KB
testcase_13 AC 38 ms
54,336 KB
testcase_14 AC 38 ms
52,976 KB
testcase_15 AC 223 ms
148,312 KB
testcase_16 AC 731 ms
149,544 KB
testcase_17 AC 38 ms
53,032 KB
testcase_18 AC 38 ms
53,544 KB
testcase_19 AC 39 ms
52,868 KB
testcase_20 AC 136 ms
85,144 KB
testcase_21 AC 144 ms
86,940 KB
testcase_22 AC 145 ms
83,480 KB
testcase_23 RE -
testcase_24 AC 101 ms
82,892 KB
testcase_25 AC 102 ms
79,936 KB
testcase_26 RE -
testcase_27 AC 147 ms
82,176 KB
testcase_28 AC 159 ms
90,984 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 239 ms
94,744 KB
testcase_32 RE -
testcase_33 AC 564 ms
110,824 KB
testcase_34 AC 270 ms
95,936 KB
testcase_35 AC 403 ms
95,776 KB
testcase_36 RE -
testcase_37 AC 879 ms
146,572 KB
testcase_38 AC 391 ms
138,084 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 450 ms
138,540 KB
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[input() for i in range(H)]
cnt0=[[0]*(H+W) for i in range(H)]
cnt1=[[0]*(H+W) for i in range(H)]
for i in range(H):
  for j in range(W):
    if S[i][j]=='#':
      cnt0[i][i-j]+=1
      cnt1[i][i+j]+=1
for i in range(1,H):
  for j in range(H+W):
    cnt0[i][j]+=cnt0[i-1][j]
    cnt1[i][j]+=cnt1[i-1][j]
result0=[[0]*(H+W) for i in range(H)]
result1=[[0]*(H+W) for i in range(H)]
p=[[0]*W for i in range(H)]
for i in range(1,H-1):
  for j in range(1,W-1):
    if S[i][j]=='.':
      continue
    l=0
    r=min(i,H-1-i,j,W-1-j)
    while True:
      m=(l+r+1)//2
      k1=cnt0[i+m][i-j]
      k2=cnt1[i+m][i+j]
      if i-m>0:
        k1-=cnt0[i-m-1][i-j]
        k2-=cnt1[i-m-1][i+j]
      if k1+k2==2*(2*m+1):
        l=m
      else:
        r=m-1
      if l==r:
        break
    if l>0:
      result0[i-l][i-j]+=1
      result1[i-l][i+j]+=1
      p[i][j]+=1
      if i+m+1<H:
        result0[i+l+1][i-j]-=1
        result1[i+l+1][i+j]-=1
for i in range(1,H):
  for j in range(H+W):
    result0[i][j]+=result0[i-1][j]
    result1[i][j]+=result1[i-1][j]
for i in range(H):
  for j in range(W):
    count=result0[i][i-j]+result1[i][i+j]-p[i][j]
    if S[i][j]=='#':
      if count==0:
        print('No')
        exit()
    else:
      if count>0:
        p=[0]
        print(p[1])
p=[0]
print('Yes')
0