結果
| 問題 | No.179 塗り分け |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-24 23:33:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 88 ms / 3,000 ms |
| コード長 | 732 bytes |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 82,160 KB |
| 実行使用メモリ | 76,660 KB |
| 最終ジャッジ日時 | 2024-07-23 15:15:38 |
| 合計ジャッジ時間 | 3,703 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 6 |
| other | AC * 40 |
ソースコード
h, w = map(int, input().split())
S = []
for i in range(h):
S.append(input())
cnt = 0
D = set()
for i in range(h):
for j in range(w):
if S[i][j] == "#":
D.add(i * 1000 + j)
l = len(D)
if l & 1 or not D:
print("NO")
exit()
E = sorted(list(D))
for x in range(h):
for y in range(-w, w):
tmp = set()
cnt = 0
for e in E:
z = e + x * 1000 + y
c, d = divmod(z, 1000)
if e in tmp:
continue
elif c < 0 or c > h or d < 0 or d > w:
break
elif z in D:
cnt += 1
tmp.add(z)
if l // 2 == cnt:
print("YES")
exit()
print("NO")