結果

問題 No.179 塗り分け
ユーザー AEnAEn
提出日時 2022-05-13 14:13:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 3,000 ms
コード長 1,045 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 77,592 KB
最終ジャッジ日時 2024-07-21 12:15:57
合計ジャッジ時間 5,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 83 ms
71,552 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 48 ms
59,136 KB
testcase_09 AC 54 ms
60,544 KB
testcase_10 AC 113 ms
76,292 KB
testcase_11 AC 106 ms
76,160 KB
testcase_12 AC 188 ms
77,032 KB
testcase_13 AC 53 ms
59,776 KB
testcase_14 AC 45 ms
53,248 KB
testcase_15 AC 42 ms
51,712 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 41 ms
52,480 KB
testcase_18 AC 116 ms
76,544 KB
testcase_19 AC 112 ms
76,288 KB
testcase_20 AC 41 ms
51,968 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 288 ms
76,664 KB
testcase_23 AC 170 ms
76,336 KB
testcase_24 AC 335 ms
76,800 KB
testcase_25 AC 297 ms
76,416 KB
testcase_26 AC 102 ms
76,416 KB
testcase_27 AC 120 ms
76,844 KB
testcase_28 AC 104 ms
76,616 KB
testcase_29 AC 128 ms
76,836 KB
testcase_30 AC 100 ms
76,056 KB
testcase_31 AC 128 ms
77,212 KB
testcase_32 AC 101 ms
76,504 KB
testcase_33 AC 136 ms
77,592 KB
testcase_34 AC 100 ms
76,288 KB
testcase_35 AC 128 ms
77,252 KB
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 42 ms
52,224 KB
testcase_38 AC 42 ms
52,352 KB
testcase_39 AC 41 ms
51,968 KB
testcase_40 AC 42 ms
52,352 KB
testcase_41 AC 42 ms
52,352 KB
testcase_42 AC 42 ms
52,352 KB
testcase_43 AC 70 ms
67,200 KB
testcase_44 AC 106 ms
76,416 KB
testcase_45 AC 50 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
c = []
cnt = 0
for _ in range(H):
    s = list(input())
    cnt += s.count('#')
    c.append(s)
if cnt == 0 or cnt%2==1:
    print('NO')
    exit()

def solve(i, j):
    w1, w2 = [], []
    w1.append([0, H, 1])
    w2.append([0, W, 1])
    w1.append([H-1, -1, -1])
    w2.append([W-1, -1, -1])
    p, q = w1[i<0], w2[j<0]
    b = set()
    for x in range(p[0], p[1], p[2]):
        for y in range(q[0], q[1], q[2]):
            if x+i<0 or x+i>H-1 or y+j<0 or y+j>W-1:
                if (x, y) not in b and c[x][y]=='#':
                    return False
                else:
                    continue
            if (x, y) in b or c[x][y] == '.':
                continue
            b.add((x, y))
            if c[x+i][y+j]=='.':
                return False
            else:
                b.add((x+i, y+j))
    return True

for i in range(-H+1, H):
    for j in range(-W+1, W):
        if i == j == 0:
            continue
        if solve(i, j):
            print('YES')
            exit()
print('NO')
0