[백준 알고리즘] 1018번 체스판 다시 칠하기 (Python)
언어, 알고리즘 공부/백준2020. 4. 17. 18:37[백준 알고리즘] 1018번 체스판 다시 칠하기 (Python)

N, M = map(int, input().split()) chess = [list(input()) for _ in range(N)] min_cnt = 64 b_start = [] w_start = [] for i in range(8): if i % 2 == 0: b_start.append(list(['B', 'W', 'B', 'W', 'B', 'W', 'B', 'W'])) w_start.append(list(['W', 'B', 'W', 'B', 'W', 'B', 'W', 'B'])) else: w_start.append(list(['B', 'W', 'B', 'W', 'B', 'W', 'B', 'W'])) b_start.append(list(['W', 'B', 'W', 'B', 'W', 'B', 'W',..

image