結果

問題 No.179 塗り分け
ユーザー hang_hang_clnhang_hang_cln
提出日時 2018-06-09 11:30:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,235 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 11,084 KB
実行使用メモリ 8,440 KB
最終ジャッジ日時 2023-09-13 01:45:03
合計ジャッジ時間 11,262 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
8,292 KB
testcase_02 WA -
testcase_03 AC 17 ms
8,308 KB
testcase_04 WA -
testcase_05 AC 16 ms
8,132 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
8,280 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 352 ms
8,344 KB
testcase_13 AC 17 ms
8,220 KB
testcase_14 AC 19 ms
8,252 KB
testcase_15 AC 16 ms
8,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 363 ms
8,320 KB
testcase_20 AC 17 ms
8,324 KB
testcase_21 AC 16 ms
8,148 KB
testcase_22 AC 1,072 ms
8,320 KB
testcase_23 WA -
testcase_24 AC 462 ms
8,176 KB
testcase_25 WA -
testcase_26 AC 263 ms
8,364 KB
testcase_27 AC 416 ms
8,272 KB
testcase_28 AC 251 ms
8,196 KB
testcase_29 AC 410 ms
8,152 KB
testcase_30 AC 329 ms
8,132 KB
testcase_31 AC 420 ms
7,992 KB
testcase_32 WA -
testcase_33 AC 403 ms
8,172 KB
testcase_34 AC 402 ms
8,168 KB
testcase_35 AC 406 ms
8,344 KB
testcase_36 AC 15 ms
8,112 KB
testcase_37 AC 16 ms
8,112 KB
testcase_38 AC 16 ms
8,288 KB
testcase_39 AC 16 ms
8,312 KB
testcase_40 AC 16 ms
8,336 KB
testcase_41 AC 15 ms
8,312 KB
testcase_42 AC 16 ms
8,236 KB
testcase_43 AC 28 ms
8,204 KB
testcase_44 AC 66 ms
8,160 KB
testcase_45 AC 18 ms
8,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int,input().split())
    
field = []
for h in range(H):
    field.append(list(input()))

def painting(dx, dy,black_cnt):
    # ある平行移動量で塗れるか判定
    paintCnt = [0, 0] # 赤または青で塗った枚数
    canPaintByThiWay = True # この平行移動量で塗り分け可能か
    paint = [[0 for w in range(W)] for h in range(H)] # 0:塗ってない 1:赤 2:青
    for h in range(H):
        for w in range(W):
            if field[h][w] == '#' and paint[h][w] == 0: # 赤で塗ることができる
                paint[h][w] = 1 # 赤で塗る
                paintCnt[0] += 1
                # 平行移動先に青でも塗ってみる
                if h+dy <0 or w+dx<0 or h+dy >= H or w+dx >= W: # フィールドの外に移動しようとしていたら
                    return False
                elif field[h+dy][w+dx] == '#' and paint[h+dy][w+dx] == 0: # 青で塗ることができる
                    paint[h+dy][w+dx] = 2 # 青で塗る
                    paintCnt[1] += 1
                else: # 青で塗ることが出来ない = 失敗
                    return False # この平行移動量ではむり
            #else: # 赤で塗ることができない = 失敗とは限らない
            #    if paint[h][w] == 2: # 青ですでに塗られていたら
            #        return False # この平行移動量ではむり

            if sum(paintCnt) == black_cnt:
                if paintCnt[0] == paintCnt[1]:
                    return True
                else:
                    return False

def check():
    black_cnt = 0
    for h in range(H):
        for w in range(W):
            #print(field[h][w])
            if field[h][w] == '#':
                black_cnt += 1
    if black_cnt % 2 == 1:
        return False
    else:
        # 平行移動量を決める
        for dx in range(-W,W):
            for dy in range(-H,H):
                if dx == 0 and dy == 0:
                    return False
                
                if painting(dx,dy,black_cnt):
                    return True
                else:
                    canPaint = False
        
        return canPaint

if check():
    print('YES')
else:
    print('NO')
0