結果

問題 No.179 塗り分け
ユーザー FromBooskaFromBooska
提出日時 2023-02-21 14:25:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 3,000 ms
コード長 1,685 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 77,176 KB
最終ジャッジ日時 2024-07-22 01:49:36
合計ジャッジ時間 6,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,956 KB
testcase_01 AC 39 ms
52,880 KB
testcase_02 AC 35 ms
53,136 KB
testcase_03 AC 36 ms
53,116 KB
testcase_04 AC 38 ms
52,872 KB
testcase_05 AC 37 ms
53,480 KB
testcase_06 AC 57 ms
65,600 KB
testcase_07 AC 40 ms
59,096 KB
testcase_08 AC 40 ms
58,560 KB
testcase_09 AC 39 ms
59,100 KB
testcase_10 AC 286 ms
76,976 KB
testcase_11 AC 267 ms
77,176 KB
testcase_12 AC 266 ms
76,944 KB
testcase_13 AC 37 ms
52,644 KB
testcase_14 AC 38 ms
53,652 KB
testcase_15 AC 36 ms
52,500 KB
testcase_16 AC 37 ms
53,200 KB
testcase_17 AC 36 ms
53,116 KB
testcase_18 AC 127 ms
76,712 KB
testcase_19 AC 129 ms
76,464 KB
testcase_20 AC 42 ms
61,792 KB
testcase_21 AC 42 ms
60,264 KB
testcase_22 AC 58 ms
67,180 KB
testcase_23 AC 95 ms
76,728 KB
testcase_24 AC 53 ms
63,952 KB
testcase_25 AC 58 ms
66,200 KB
testcase_26 AC 71 ms
71,044 KB
testcase_27 AC 93 ms
76,496 KB
testcase_28 AC 127 ms
76,920 KB
testcase_29 AC 125 ms
77,088 KB
testcase_30 AC 146 ms
77,136 KB
testcase_31 AC 150 ms
76,968 KB
testcase_32 AC 154 ms
77,020 KB
testcase_33 AC 151 ms
76,892 KB
testcase_34 AC 179 ms
76,960 KB
testcase_35 AC 173 ms
76,872 KB
testcase_36 AC 38 ms
52,804 KB
testcase_37 AC 39 ms
52,340 KB
testcase_38 AC 37 ms
53,228 KB
testcase_39 AC 38 ms
52,616 KB
testcase_40 AC 38 ms
54,248 KB
testcase_41 AC 38 ms
53,852 KB
testcase_42 AC 37 ms
52,880 KB
testcase_43 AC 45 ms
61,668 KB
testcase_44 AC 60 ms
67,988 KB
testcase_45 AC 44 ms
60,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# まず黒マスは偶数個である必要
# どの黒マスとどの黒マスをペアにするか、そのペア間の(i, j)距離
# その距離で全部の黒マスをペアリングできるか

H, W = map(int, input().split())
S = []
for i in range(H):
    S.append(input())
    
blacks = []
count = 0
count_matrix = [[-1]*W for h in range(H)]
for i in range(H):
    for j in range(W):
        if S[i][j] == '#':
            blacks.append((count, (i, j)))
            count_matrix[i][j] = count
            count += 1
            
black_total = count
ans = 'NO'
didj_visited = set()
if black_total%2 == 0:
    for a in range(black_total):
        for b in range(a+1, black_total):
            di = blacks[b][1][0]-blacks[a][1][0]
            dj = blacks[b][1][1]-blacks[a][1][1]
            if (di, dj) in didj_visited:
                continue
            didj_visited.add((di, dj))
            
            test = True
            visited = set()
            for c in range(black_total):
                if blacks[c][0] in visited:
                    continue
                visited.add(blacks[c][0])
                if not (0 <= blacks[c][1][0]+di < H and 0 <= blacks[c][1][1]+dj < W):
                    test = False
                    break                
                nxt_num = count_matrix[blacks[c][1][0]+di][blacks[c][1][1]+dj]
                if nxt_num in visited or nxt_num == -1:
                    test = False
                    break
                else:
                    visited.add(nxt_num)
            if test == True and len(visited) == black_total:
                ans = 'YES'
                #print(blacks[a], blacks[b], di, dj)
print(ans)

0