結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2023-10-15 19:58:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,180 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,200 KB
最終ジャッジ日時 2024-09-16 22:06:33
合計ジャッジ時間 8,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
58,624 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 44 ms
61,824 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 92 ms
76,616 KB
testcase_07 AC 36 ms
58,496 KB
testcase_08 AC 196 ms
76,416 KB
testcase_09 AC 201 ms
76,800 KB
testcase_10 AC 309 ms
77,024 KB
testcase_11 AC 275 ms
76,812 KB
testcase_12 WA -
testcase_13 AC 39 ms
59,520 KB
testcase_14 AC 39 ms
59,904 KB
testcase_15 AC 33 ms
51,456 KB
testcase_16 AC 32 ms
52,480 KB
testcase_17 AC 32 ms
52,352 KB
testcase_18 AC 259 ms
76,408 KB
testcase_19 AC 262 ms
76,960 KB
testcase_20 AC 37 ms
58,240 KB
testcase_21 AC 35 ms
58,112 KB
testcase_22 AC 342 ms
76,752 KB
testcase_23 AC 267 ms
76,568 KB
testcase_24 AC 176 ms
76,760 KB
testcase_25 AC 180 ms
77,072 KB
testcase_26 AC 214 ms
77,112 KB
testcase_27 AC 235 ms
76,908 KB
testcase_28 AC 303 ms
77,200 KB
testcase_29 AC 318 ms
76,372 KB
testcase_30 AC 351 ms
77,024 KB
testcase_31 AC 340 ms
76,496 KB
testcase_32 AC 356 ms
76,664 KB
testcase_33 AC 319 ms
76,944 KB
testcase_34 AC 371 ms
76,928 KB
testcase_35 AC 321 ms
76,600 KB
testcase_36 AC 32 ms
52,096 KB
testcase_37 AC 30 ms
52,352 KB
testcase_38 AC 32 ms
52,096 KB
testcase_39 AC 31 ms
52,096 KB
testcase_40 AC 37 ms
59,392 KB
testcase_41 AC 30 ms
51,712 KB
testcase_42 AC 37 ms
58,240 KB
testcase_43 AC 70 ms
76,288 KB
testcase_44 AC 92 ms
76,160 KB
testcase_45 AC 58 ms
71,168 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 color[i][j] == 0:
                    if 0<=i+di<H and 0<=j+dj<W:
                        color[i][j] = 1
                        color[i+di][j+dj] = 1
        if S_num == color:
            #print(di, dj, color)
            ans = 'YES'
print(ans)   
0