結果

問題 No.179 塗り分け
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-28 20:25:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 3,000 ms
コード長 1,051 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-23 14:37:00
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 58 ms
72,176 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 117 ms
76,240 KB
testcase_09 AC 117 ms
76,244 KB
testcase_10 AC 86 ms
76,288 KB
testcase_11 AC 84 ms
76,260 KB
testcase_12 AC 121 ms
76,928 KB
testcase_13 AC 40 ms
53,760 KB
testcase_14 AC 43 ms
59,392 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 37 ms
52,736 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 87 ms
76,288 KB
testcase_19 AC 89 ms
76,176 KB
testcase_20 AC 38 ms
52,992 KB
testcase_21 AC 39 ms
52,396 KB
testcase_22 AC 176 ms
76,288 KB
testcase_23 AC 89 ms
76,160 KB
testcase_24 AC 125 ms
76,544 KB
testcase_25 AC 90 ms
76,360 KB
testcase_26 AC 93 ms
76,140 KB
testcase_27 AC 114 ms
76,416 KB
testcase_28 AC 90 ms
76,188 KB
testcase_29 AC 125 ms
76,672 KB
testcase_30 AC 103 ms
76,324 KB
testcase_31 AC 117 ms
76,416 KB
testcase_32 AC 103 ms
76,728 KB
testcase_33 AC 126 ms
76,672 KB
testcase_34 AC 99 ms
76,784 KB
testcase_35 AC 127 ms
76,544 KB
testcase_36 AC 39 ms
52,736 KB
testcase_37 AC 38 ms
51,968 KB
testcase_38 AC 39 ms
52,480 KB
testcase_39 AC 38 ms
52,480 KB
testcase_40 AC 38 ms
52,736 KB
testcase_41 AC 38 ms
51,968 KB
testcase_42 AC 39 ms
52,608 KB
testcase_43 AC 55 ms
70,528 KB
testcase_44 AC 76 ms
76,256 KB
testcase_45 AC 49 ms
62,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inside(x, y):
    return 0 <= x < H and 0 <= y < W

def move(h, w):
    c = [[-1] * W for i in range(H)]
    for i in range(H):
        for j in range(W):
            # まだ塗られていない黒マスが見つかったら
            if s[i][j] == '#' and c[i][j] == -1:
                # このマスを赤に塗る
                c[i][j] = 0
                # 対応する黒マスがなければやめる
                ni = i + h; nj = j + w
                if not inside(ni, nj):
                    return False
                if s[ni][nj] != '#':
                    return False
                # 対応するマスを青に
                c[ni][nj] = 1

    return True


H, W = map(int, input().split())
s = []
black = 0
for i in range(H):
    s.append(list(input()))
    black += s[i].count('#')

if black == 0 or black & 1:
    print("NO")
    exit()

for h in range(-H, H):
    for w in range(-W, W):
        if h == w == 0:
            continue
        if move(h, w):
            print("YES")
            exit()
print("NO")
0