結果

問題 No.179 塗り分け
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-04 22:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 3,000 ms
コード長 1,493 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-07-23 14:34:18
合計ジャッジ時間 5,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 AC 43 ms
54,528 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 44 ms
54,400 KB
testcase_06 AC 49 ms
60,288 KB
testcase_07 AC 47 ms
59,628 KB
testcase_08 AC 63 ms
69,632 KB
testcase_09 AC 66 ms
70,784 KB
testcase_10 AC 64 ms
67,200 KB
testcase_11 AC 63 ms
66,816 KB
testcase_12 AC 566 ms
77,184 KB
testcase_13 AC 43 ms
54,716 KB
testcase_14 AC 44 ms
54,784 KB
testcase_15 AC 41 ms
53,888 KB
testcase_16 AC 42 ms
53,888 KB
testcase_17 AC 43 ms
53,760 KB
testcase_18 AC 61 ms
67,072 KB
testcase_19 AC 59 ms
66,304 KB
testcase_20 AC 49 ms
60,928 KB
testcase_21 AC 47 ms
60,288 KB
testcase_22 AC 88 ms
76,816 KB
testcase_23 AC 52 ms
62,888 KB
testcase_24 AC 82 ms
77,084 KB
testcase_25 AC 48 ms
61,056 KB
testcase_26 AC 54 ms
63,872 KB
testcase_27 AC 91 ms
76,952 KB
testcase_28 AC 58 ms
65,152 KB
testcase_29 AC 108 ms
77,188 KB
testcase_30 AC 86 ms
75,008 KB
testcase_31 AC 125 ms
77,316 KB
testcase_32 AC 83 ms
75,264 KB
testcase_33 AC 123 ms
77,076 KB
testcase_34 AC 70 ms
69,504 KB
testcase_35 AC 130 ms
77,056 KB
testcase_36 AC 43 ms
54,272 KB
testcase_37 AC 43 ms
53,632 KB
testcase_38 AC 44 ms
54,144 KB
testcase_39 AC 44 ms
54,528 KB
testcase_40 AC 44 ms
53,888 KB
testcase_41 AC 43 ms
54,340 KB
testcase_42 AC 44 ms
54,656 KB
testcase_43 AC 52 ms
61,184 KB
testcase_44 AC 66 ms
68,224 KB
testcase_45 AC 49 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3
# -*- coding: utf-8 -*-

import array
import collections
import itertools


IS_RED = 1
IS_BLUE = 2


def solve(height, width, black_cells):
    num_black_cells = len(black_cells)
    if num_black_cells == 0:
        return False
    elif num_black_cells % 2 == 1:
        return False
    it_a = ((0, dc) for dc in range(1, width))
    it_b = itertools.product(range(1, height), range(-width + 1, width))
    for dr, dc in itertools.chain(it_a, it_b):
        counter = 0
        painted = collections.defaultdict(int)
        for r0, c0 in black_cells:
            if counter >= num_black_cells:
                return True
            (r, c) = (r0 + dr, c0 + dc)
            if r < 0 or r >= height or c < 0 or c >= width:
                if not painted[(r0, c0)]:
                    break
            elif (not painted[(r0, c0)]) and (not painted[(r, c)]):
                if (r, c) not in black_cells:
                    break
                painted[(r0, c0)] = IS_RED
                painted[(r, c)] = IS_BLUE
                counter += 2
        else:
            return True
    else:
        return False


def main():
    h, w = map(int, input().split())
    black_cells = []
    for r in range(h):
        for c, cell in enumerate(input()):
            if cell == "#":
                black_cells.append((r, c))
    black_cells.sort()
    if solve(h, w, black_cells):
        print("YES")
    else:
        print("NO")


if __name__ == '__main__':
    main()
0