結果

問題 No.179 塗り分け
ユーザー hisaharuhisaharu
提出日時 2015-10-17 23:23:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 236 ms / 3,000 ms
コード長 1,186 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-23 14:32:58
合計ジャッジ時間 2,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 12 ms
6,272 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 18 ms
6,400 KB
testcase_06 AC 12 ms
6,400 KB
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 12 ms
6,400 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 14 ms
6,272 KB
testcase_12 AC 236 ms
6,400 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 11 ms
6,400 KB
testcase_15 AC 11 ms
6,272 KB
testcase_16 AC 11 ms
6,272 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 13 ms
6,400 KB
testcase_19 AC 13 ms
6,400 KB
testcase_20 AC 80 ms
6,400 KB
testcase_21 AC 21 ms
6,400 KB
testcase_22 AC 35 ms
6,400 KB
testcase_23 AC 12 ms
6,400 KB
testcase_24 AC 17 ms
6,272 KB
testcase_25 AC 12 ms
6,528 KB
testcase_26 AC 12 ms
6,400 KB
testcase_27 AC 29 ms
6,400 KB
testcase_28 AC 12 ms
6,528 KB
testcase_29 AC 39 ms
6,272 KB
testcase_30 AC 24 ms
6,400 KB
testcase_31 AC 45 ms
6,400 KB
testcase_32 AC 21 ms
6,528 KB
testcase_33 AC 52 ms
6,400 KB
testcase_34 AC 17 ms
6,400 KB
testcase_35 AC 59 ms
6,400 KB
testcase_36 AC 11 ms
6,144 KB
testcase_37 AC 11 ms
6,272 KB
testcase_38 AC 11 ms
6,144 KB
testcase_39 AC 11 ms
6,144 KB
testcase_40 AC 11 ms
6,400 KB
testcase_41 AC 11 ms
6,272 KB
testcase_42 AC 12 ms
6,272 KB
testcase_43 AC 12 ms
6,400 KB
testcase_44 AC 16 ms
6,528 KB
testcase_45 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
import sys

def find_r(H, W, S):
    for y in range(H):
        for x in range(W):
            if S[y][x] == "#":
                return x, y
    print "NO"
    sys.exit(0)

def check(B, rx, ry, bx, by):
#    print rx, ry, bx, by
    cy = by - ry
    cx = bx - rx
    for y in range(H):
        for x in range(W):
            if B[y][x] == "#":
                B[y][x] = "R"
                if y+cy not in range(H):
                    return False
                if x+cx not in range(W):
                    return False
                if B[y+cy][x+cx] == "#":
                    B[y+cy][x+cx] = "B"
                else:
                    return False
    return True

def print_s(S):
    print "\n".join(["".join(x) for x in S])

H, W = map(int, raw_input().split())
#print H, W
S = []
for i in range(H):
    S.append(list(raw_input()))

rx, ry = find_r(H, W, S)
S[ry][rx] = "R"
#print rx, ry, S

for by in range(H):
    for bx in range(W):
        if S[by][bx] != "#":
            continue
        B = map(list, S)
        B[by][bx] = "B"
        if check(B, rx, ry, bx, by):
            print "YES"
#            print_s(B)
            sys.exit(0)
print "NO"
0