結果

問題 No.179 塗り分け
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-24 15:16:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 3,000 ms
コード長 962 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,576 KB
最終ジャッジ日時 2024-06-25 07:29:45
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 57 ms
70,656 KB
testcase_07 AC 41 ms
58,240 KB
testcase_08 AC 127 ms
76,632 KB
testcase_09 AC 112 ms
76,928 KB
testcase_10 AC 80 ms
76,320 KB
testcase_11 AC 78 ms
76,288 KB
testcase_12 AC 133 ms
77,056 KB
testcase_13 AC 39 ms
53,376 KB
testcase_14 AC 42 ms
59,648 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 98 ms
76,928 KB
testcase_19 AC 99 ms
76,928 KB
testcase_20 AC 42 ms
59,008 KB
testcase_21 AC 41 ms
58,240 KB
testcase_22 AC 134 ms
76,984 KB
testcase_23 AC 82 ms
76,432 KB
testcase_24 AC 130 ms
76,928 KB
testcase_25 AC 83 ms
76,416 KB
testcase_26 AC 95 ms
76,280 KB
testcase_27 AC 124 ms
77,180 KB
testcase_28 AC 101 ms
76,788 KB
testcase_29 AC 136 ms
77,576 KB
testcase_30 AC 114 ms
76,760 KB
testcase_31 AC 137 ms
77,376 KB
testcase_32 AC 103 ms
76,928 KB
testcase_33 AC 125 ms
77,312 KB
testcase_34 AC 100 ms
76,800 KB
testcase_35 AC 125 ms
77,184 KB
testcase_36 AC 37 ms
52,688 KB
testcase_37 AC 37 ms
51,968 KB
testcase_38 AC 40 ms
52,224 KB
testcase_39 AC 39 ms
52,352 KB
testcase_40 AC 38 ms
52,480 KB
testcase_41 AC 36 ms
52,096 KB
testcase_42 AC 38 ms
52,608 KB
testcase_43 AC 51 ms
68,992 KB
testcase_44 AC 69 ms
76,416 KB
testcase_45 AC 44 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(h,w,s):
  ary=[]
  for i in range(h):
    for j in range(w):
      if s[i][j]=="#":
        ary.append((i,j))
  if len(ary)%2==1:return False
  if len(ary)==0:return False
  # 平行移動のパターンはH*W-1
  # すべて試す
  ary_st=set(ary)
  for i in range(-h,h):
    for j in range(-w,w):
      if i==0 and j==0:continue
      mat=[[0]*w for _ in range(h)]
      flg=True
      for x,y in ary:
        if mat[x][y]==1:continue
        if 0<=x+i<h and 0<=y+j<w and (x+i,y+j) in ary_st and mat[x+i][y+j]==0:
          mat[x+i][y+j]=1
          mat[x][y]=1
        elif 0<=x-i<h and 0<=y+j<w and (x-i,y-j) in ary_st and mat[x-i][y-j]==0:
          mat[x-i][y-j]=1
          mat[x][y]=1
        else:
          flg=False
          break
      if flg:
        return True
  return False
if __name__=='__main__':
  h,w=map(int,input().split())
  s=[input() for _ in range(h)]
  ret1=main1(h,w,s)
  if ret1:
    print("YES")
  else:
    print("NO")
0