Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해시 테이블
- 플로이드-워셜
- 누적 합
- 브루트포스
- 모던 JavaScript 튜토리얼
- boj
- SSAFY
- 에라토스테네스의 체
- 트리
- 13164
- 세그먼트 트리
- Python
- 슬라이딩 윈도우
- 그리디
- DFS
- 애드 혹
- 정렬
- BFS
- 정수론
- JavaScript
- 맵
- 싸피
- 구현
- DP
- 투 포인터
- 이분 탐색
- 수학
- 문자열
- 2357
- 그래프
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 17837 - 새로운 게임 2 (Python) 본문
아이디어
조건에 따라 말을 이동시키며 이동한 칸의 말 개수가 4개 이상인 경우 해당 턴을 출력한다.
풀이
import sys
input = sys.stdin.readline
delta = [(0, 1), (0, -1), (-1, 0), (1, 0)]
def solution():
def reverse(idx):
bottom = idx
while idx != -1:
bottom = idx
pieces[idx][3], pieces[idx][4] = pieces[idx][4], pieces[idx][3]
idx = pieces[idx][4]
return bottom
def move(color):
top, bottom = board[r][c], i
board[r][c] = pieces[i][4]
if pieces[i][4] != -1:
pieces[pieces[i][4]][3] = -1
pieces[i][4] = -1
if color == 1:
top, bottom = i, reverse(i)
if board[nr][nc] != -1:
pieces[board[nr][nc]][3] = bottom
pieces[bottom][4] = board[nr][nc]
board[nr][nc] = top
idx = bottom
while idx != -1:
pieces[idx][0], pieces[idx][1] = nr, nc
idx = pieces[idx][3]
N, K = map(int, input().split())
board_color = [tuple(map(int, input().split())) for _ in range(N)]
board = [[-1]*N for _ in range(N)]
pieces = []
for i in range(K):
r, c, d = map(int, input().split())
pieces.append([r-1, c-1, d-1, -1, -1])
board[r-1][c-1] = i
for t in range(1, 1001):
for i in range(K):
r, c, d, child, parent = pieces[i]
dr, dc = delta[d]
nr, nc = r+dr, c+dc
if nr >= N or nr < 0 or nc >= N or nc < 0 or board_color[nr][nc] == 2:
if pieces[i][2]%2:
pieces[i][2] -= 1
else:
pieces[i][2] += 1
d = pieces[i][2]
dr, dc = delta[d]
nr, nc = r+dr, c+dc
if N > nr >= 0 and N > nc >= 0 and board_color[nr][nc] != 2:
move(board_color[nr][nc])
else:
move(board_color[nr][nc])
cnt = 1
child, parent = pieces[i][3], pieces[i][4]
while child != -1:
cnt += 1
child = pieces[child][3]
while parent != -1:
cnt += 1
parent = pieces[parent][4]
if cnt >= 4:
print(t)
return
print(-1)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 11256 - 사탕 (Python) (0) | 2023.03.28 |
---|---|
[BOJ] 20061 - 모노미노도미노 2 (Python) (0) | 2023.03.28 |
[BOJ] 17825 - 주사위 윷놀이 (Python) (0) | 2023.03.26 |
[BOJ] 13711 - LCS 4 (Python) (0) | 2023.03.25 |
[BOJ] 23288 - 주사위 굴리기 2 (Python) (0) | 2023.03.25 |
Comments