-
[백준] 2615번: 오목 (완전탐색, Python)Algorithm PS👩🏻💻/백준 2023. 5. 10. 02:32
문제
https://www.acmicpc.net/problem/2615
2615번: 오목
오목은 바둑판에 검은 바둑알과 흰 바둑알을 교대로 놓아서 겨루는 게임이다. 바둑판에는 19개의 가로줄과 19개의 세로줄이 그려져 있는데 가로줄은 위에서부터 아래로 1번, 2번, ... ,19번의 번호
www.acmicpc.net
문제 풀이
- 출력해야하는 제일 왼쪽(세로줄은 가장 위쪽) 좌표를 기준으로 [주 대각선, 세로줄, 가로줄, 부 대각선] 순으로 하여 4개의 방향을 탐색했다. (BFS)
- 단, 조건으로 6개 연속인 바둑알은 승리가 아니므로, 연속된 조건의 count를 자신을 제외하고 각 방향으로 5번까지 진행한 후
- 연속된 바둑알의 갯수가 4개인 경우(기준 좌표 제외)만 승리로 간주한다.
n = 19 blacks = [] whites = [] board = [] for _ in range(n): board.append(list(map(int, input().split()))) for i in range(n): for j in range(n): if board[i][j] == 1: blacks.append((i, j)) elif board[i][j] == 2: whites.append((i, j)) def search(omoks): dx = [1, 1, 0, -1] dy = [1, 0, 1, 1] for x, y in omoks: for i in range(4): cnt = 0 for k in range(1, 6): nx = x + dx[i] * k ny = y + dy[i] * k if nx < 0 or nx >= n or ny < 0 or ny >= n: continue if (nx, ny) not in omoks: break # another directions if (nx, ny) in omoks: cnt += 1 tx = x - dx[i] ty = y - dy[i] if (tx, ty) not in omoks and cnt == 4: return (x+1, y+1) return False black_result = search(blacks) white_result = search(whites) if black_result: print(1) print(*black_result) elif white_result: print(2) print(*white_result) else: print(0)
'Algorithm PS👩🏻💻 > 백준' 카테고리의 다른 글
[백준] 2212번: 센서 (Python) (0) 2023.05.15 [백준] 21314번: 민겸 수(Python) (0) 2023.05.14 [백준] 2887번: 행성 터널(그래프, Python) (1) 2023.05.10 [백준] 22858번: 원상 복구 (small) (Python) (0) 2023.05.07 [백준] 20438번: 출석체크 (Python) (0) 2023.05.04