結果

問題 No.179 塗り分け
ユーザー fgshunfgshun
提出日時 2020-09-27 11:49:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,279 ms / 3,000 ms
コード長 1,025 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-07-23 15:22:23
合計ジャッジ時間 22,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 44 ms
54,784 KB
testcase_02 AC 58 ms
64,512 KB
testcase_03 AC 46 ms
54,528 KB
testcase_04 AC 54 ms
63,872 KB
testcase_05 AC 195 ms
77,440 KB
testcase_06 AC 105 ms
76,764 KB
testcase_07 AC 44 ms
58,896 KB
testcase_08 AC 997 ms
79,796 KB
testcase_09 AC 1,009 ms
79,420 KB
testcase_10 AC 564 ms
78,464 KB
testcase_11 AC 498 ms
78,976 KB
testcase_12 AC 937 ms
80,000 KB
testcase_13 AC 68 ms
70,144 KB
testcase_14 AC 61 ms
72,192 KB
testcase_15 AC 42 ms
53,504 KB
testcase_16 AC 43 ms
53,632 KB
testcase_17 AC 42 ms
53,248 KB
testcase_18 AC 554 ms
78,208 KB
testcase_19 AC 537 ms
78,336 KB
testcase_20 AC 968 ms
80,316 KB
testcase_21 AC 1,078 ms
80,896 KB
testcase_22 AC 1,279 ms
81,152 KB
testcase_23 AC 556 ms
77,952 KB
testcase_24 AC 1,039 ms
79,872 KB
testcase_25 AC 564 ms
78,464 KB
testcase_26 AC 636 ms
78,848 KB
testcase_27 AC 1,050 ms
79,360 KB
testcase_28 AC 611 ms
78,236 KB
testcase_29 AC 1,034 ms
79,744 KB
testcase_30 AC 769 ms
79,104 KB
testcase_31 AC 1,028 ms
79,616 KB
testcase_32 AC 684 ms
78,720 KB
testcase_33 AC 1,047 ms
80,000 KB
testcase_34 AC 648 ms
78,552 KB
testcase_35 AC 1,046 ms
80,764 KB
testcase_36 AC 44 ms
54,144 KB
testcase_37 AC 45 ms
54,656 KB
testcase_38 AC 45 ms
54,144 KB
testcase_39 AC 45 ms
54,400 KB
testcase_40 AC 53 ms
61,952 KB
testcase_41 AC 44 ms
53,888 KB
testcase_42 AC 51 ms
62,208 KB
testcase_43 AC 126 ms
77,268 KB
testcase_44 AC 220 ms
77,824 KB
testcase_45 AC 85 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import copy

def _pred(move_x, move_y, H, W, s):
    if move_x == 0 and move_y == 0:
        return False
    for x, y in itertools.product(range(H), range(W)):
        if s[x][y] == 'b':
            s[x][y] = 'R'
            x2 = x + move_x
            y2 = y + move_y
            if 0 <= x2 < H and 0 <= y2 < W and s[x2][y2] == 'b':
                s[x2][y2] = 'B'
            else:
                return False

    return True


def resolve(in_):
    H, W = map(int, next(in_).split())
    black = ord(b'#')
    white = ord(b' ')

    S = []
    for s in itertools.islice(in_, H):
        S.append(['b' if i == black else 'w' for i in s.rstrip()])
    
    if all('b' not in s for s in S):
        return 'NO'

    ans = any(_pred(move_x, move_y, H, W, copy.deepcopy(S)) for move_x, move_y in itertools.product(range(-H + 1, H), range(-W + 1, W)))

    return 'YES' if ans else 'NO'
    

def main():
    ans = resolve(sys.stdin.buffer)

    print(ans)


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