結果

問題 No.179 塗り分け
ユーザー hisaharuhisaharu
提出日時 2015-10-17 23:23:32
言語 Python2
(2.7.18)
結果
AC  
実行時間 243 ms / 3,000 ms
コード長 1,186 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 6,596 KB
実行使用メモリ 6,100 KB
最終ジャッジ日時 2023-09-30 20:44:47
合計ジャッジ時間 2,951 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,948 KB
testcase_01 AC 12 ms
5,956 KB
testcase_02 AC 11 ms
5,936 KB
testcase_03 AC 11 ms
5,988 KB
testcase_04 AC 11 ms
6,068 KB
testcase_05 AC 19 ms
5,944 KB
testcase_06 AC 11 ms
6,024 KB
testcase_07 AC 11 ms
6,068 KB
testcase_08 AC 12 ms
5,916 KB
testcase_09 AC 12 ms
5,960 KB
testcase_10 AC 13 ms
5,920 KB
testcase_11 AC 13 ms
5,912 KB
testcase_12 AC 243 ms
5,984 KB
testcase_13 AC 11 ms
5,992 KB
testcase_14 AC 12 ms
5,892 KB
testcase_15 AC 11 ms
5,872 KB
testcase_16 AC 11 ms
6,032 KB
testcase_17 AC 11 ms
5,988 KB
testcase_18 AC 13 ms
6,004 KB
testcase_19 AC 13 ms
6,040 KB
testcase_20 AC 81 ms
6,016 KB
testcase_21 AC 21 ms
6,084 KB
testcase_22 AC 34 ms
6,016 KB
testcase_23 AC 12 ms
6,060 KB
testcase_24 AC 17 ms
5,948 KB
testcase_25 AC 12 ms
6,088 KB
testcase_26 AC 13 ms
6,000 KB
testcase_27 AC 29 ms
6,044 KB
testcase_28 AC 13 ms
5,920 KB
testcase_29 AC 38 ms
6,020 KB
testcase_30 AC 23 ms
6,100 KB
testcase_31 AC 46 ms
6,004 KB
testcase_32 AC 20 ms
6,000 KB
testcase_33 AC 52 ms
6,048 KB
testcase_34 AC 18 ms
6,084 KB
testcase_35 AC 58 ms
6,092 KB
testcase_36 AC 11 ms
5,872 KB
testcase_37 AC 11 ms
5,872 KB
testcase_38 AC 11 ms
6,012 KB
testcase_39 AC 11 ms
5,956 KB
testcase_40 AC 12 ms
5,872 KB
testcase_41 AC 11 ms
6,028 KB
testcase_42 AC 11 ms
5,852 KB
testcase_43 AC 13 ms
5,952 KB
testcase_44 AC 16 ms
6,048 KB
testcase_45 AC 12 ms
5,960 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