티스토리 뷰
반응형
문제
문제 상황
- 체스판 색깔이 백, 흑이 반복되어야 하는데 8이상, 50이하 길이의 판이 주어질 때 최소의 색칠로 8 by 8 체스판을 만들 경우의 최소 색칠 수를 반환한다.
해결 전략
- 우선 시작 행, 시작 열을 입력 했을 때 8 by 8 판에 해야 할 색칠의 수를 반환하는 함수를 만들고, 판의 가장 왼쪽 가장 위의 지점을 이동시키며 모든 경우를 탐색한다.
코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
from sys import stdin, maxsize
input = stdin.readline
row, col = map(int, input().split())
chess_board = [[] for _ in range(row)]
for i in range(row):
chess_board[i] = list(input().strip())
def check_board(word: str, row: int, col: int, chess_board) -> int:
cnt = 0
for i in range(row, row + 8):
for j in range(col, col + 8):
if i % 2 == 0:
if j % 2 == 0 and chess_board[i][j] != word:
cnt += 1
if j % 2 == 1 and chess_board[i][j] == word:
cnt += 1
else:
if j % 2 == 0 and chess_board[i][j] == word:
cnt += 1
if j % 2 == 1 and chess_board[i][j] != word:
cnt += 1
return cnt
cnt = maxsize
for i in range(0, row - 7):
for j in range(0, col - 7):
cnt = min(cnt, check_board("W", i, j, chess_board))
cnt = min(cnt, check_board("B", i, j, chess_board))
print(cnt)
|
cs |
해설
- Brute Force -> 최악의 경우에도 (50-8)*(50-8)을 순회하며 64번 체크하므로 속도에는 문제가 없다.
새로 학습한 것 & 실수
- 네이밍을 row, col로 하여 반복문의 조건도 i, j 가 아니라 row, col로 해서 이상하게 높은 숫자가 나왔다. 항상 조건문, 반복문 등에서 변수명이 중요하다.
반응형
'알고리즘 학습 > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 - 통계학 (2108번) [Python] (0) | 2021.01.12 |
---|---|
백준 알고리즘 - 소트인사이드 (1427번) [Python] (0) | 2021.01.12 |
백준 알고리즘 - 리모컨 (1107) [Python] (0) | 2020.10.22 |
백준 알고리즘 - 날짜 계산 (1476) [Python] (0) | 2020.10.21 |
백준 알고리즘 - 병든 나이트 (1783) [Python] (0) | 2020.10.20 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- NumberofDiscIntersections#Codility#Sort#Python
- PassingCars#Codility#Python
- N으로 표현#DP#Programmers#Python
- 반복수열#백준알고리즘#Python
- 섬의개수#백준알고리즘#Python
- 랜선자르기#이분탐색#BOJ#Python
- Triangle#Sorting#Codility#Python
- 종이자르기#분할정복#BOJ#Python
- 암호코드#dp#BOJ#Python
- 텀 프로젝트#백준알고리즘#Python
- 날짜 계산#BOJ#완전탐색#Python
- 배열합치기#분할정복#BOJ#Python
- 백준 알고리즘#BackTracking
- Distinct#Codility#Python
- filter#isalnum#lower
- Brackets#Stacks and Queues#Codility#Python
- 공유기 설치#BOJ#이분탐색#Python
- 파이썬알고리즘인터뷰#4장
- Swift#Tuples#Range
- 순열사이클#BOJ#Python
- 토마토#백준알고리즘#Python
- 쿼드트리#BOJ#분할정복#Python
- 병든 나이트#BOJ#탐욕법#Python
- 미로 탐색#백준알고리즘#Python
- django#slicing
- API#lazy#
- 터틀비치#리콘#xbox#controller
- 나무자르기#BOJ#이분탐색#Python
- django
- 리모컨#완전탐색#BOJ#Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함