結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2023-10-15 20:02:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 3,000 ms
コード長 1,206 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-16 22:06:43
合計ジャッジ時間 7,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 39 ms
58,112 KB
testcase_03 AC 34 ms
52,608 KB
testcase_04 AC 46 ms
62,080 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 83 ms
76,504 KB
testcase_07 AC 35 ms
58,240 KB
testcase_08 AC 197 ms
76,416 KB
testcase_09 AC 201 ms
77,184 KB
testcase_10 AC 273 ms
76,764 KB
testcase_11 AC 241 ms
76,804 KB
testcase_12 AC 234 ms
76,468 KB
testcase_13 AC 39 ms
59,392 KB
testcase_14 AC 37 ms
60,176 KB
testcase_15 AC 31 ms
52,416 KB
testcase_16 AC 32 ms
52,464 KB
testcase_17 AC 34 ms
53,420 KB
testcase_18 AC 225 ms
76,660 KB
testcase_19 AC 247 ms
76,608 KB
testcase_20 AC 36 ms
59,008 KB
testcase_21 AC 35 ms
58,752 KB
testcase_22 AC 303 ms
76,920 KB
testcase_23 AC 251 ms
76,584 KB
testcase_24 AC 181 ms
76,540 KB
testcase_25 AC 180 ms
76,904 KB
testcase_26 AC 206 ms
76,912 KB
testcase_27 AC 222 ms
77,136 KB
testcase_28 AC 269 ms
77,092 KB
testcase_29 AC 265 ms
76,632 KB
testcase_30 AC 286 ms
76,972 KB
testcase_31 AC 288 ms
77,048 KB
testcase_32 AC 285 ms
77,080 KB
testcase_33 AC 268 ms
76,648 KB
testcase_34 AC 288 ms
76,864 KB
testcase_35 AC 268 ms
76,656 KB
testcase_36 AC 32 ms
52,096 KB
testcase_37 AC 31 ms
52,224 KB
testcase_38 AC 32 ms
51,968 KB
testcase_39 AC 31 ms
52,096 KB
testcase_40 AC 37 ms
60,032 KB
testcase_41 AC 31 ms
52,352 KB
testcase_42 AC 36 ms
58,496 KB
testcase_43 AC 68 ms
76,352 KB
testcase_44 AC 87 ms
76,552 KB
testcase_45 AC 53 ms
69,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 黒を平行移動2グループに分けられるか
# 平行移動(di, dj)で全探索
# WA出た、djはマイナスもあるな
# 黒が0のときもダメだ、黒のカウントが2以上の偶数チェック必要

H, W = map(int, input().split())
S = []
S_num = []
black_count = 0
for i in range(H):
    temp = input()
    S.append(temp)
    black_count += temp.count('#')
    s = []
    for t in temp:
        if t == '.':
            s.append(0)
        else:
            s.append(1)
    S_num.append(s)
    
if black_count == 0 or black_count%2 == 1:
    print('NO')
    exit()

ans = 'NO'
for di in range(0, H):
    for dj in range(1-W, W):
        if (di, dj) == (0, 0):
            continue
        
        #print('di', di, 'dj', dj)
        color = [[0]*W for i in range(H)]
        for i in range(H):
            for j in range(W):
                #print('i', i, 'j', j)
                if S_num[i][j] == 1 and 0<=i+di<H and 0<=j+dj<W:
                    if color[i][j] == 0 and color[i+di][j+dj] == 0:
                        color[i][j] = 1
                        color[i+di][j+dj] = 1
        if S_num == color:
            #print(di, dj, color)
            ans = 'YES'
print(ans)   
0