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
- 이분 탐색
- SSAFY
- BFS
- DFS
- DP
- 정수론
- 그래프
- 수학
- Python
- 슬라이딩 윈도우
- 트리
- 투 포인터
- 싸피
- 애드 혹
- 그리디
- 브루트포스
- 해시 테이블
- 누적 합
- 세그먼트 트리
- 정렬
- boj
- 구현
- 문자열
- 맵
- 13164
- 2357
- 에라토스테네스의 체
- 모던 JavaScript 튜토리얼
- 플로이드-워셜
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 19236 - 청소년 상어 (Python) 본문
아이디어
깊은 복사로 공간 정보를 넘기며 DFS로 상어가 먹을 수 있는 물고기 번호의 합의 최댓값을 구한다.
풀이
delta = [(-1, 0), (-1, -1), (0, -1), (1, -1), (1, 0), (1, 1), (0, 1), (-1, 1)]
def dfs(fish, board, total):
global res
for i in range(1, 17):
if fish[i]:
r, c, d = fish[i]
dr, dc = delta[d]
nr, nc = r+dr, c+dc
while 1:
if 4 > nr >= 0 and 4 > nc >= 0 and board[nr][nc] != -1:
board[r][c], board[nr][nc] = board[nr][nc], i
if fish[board[r][c]]:
fish[board[r][c]], fish[i] = fish[i], fish[board[r][c]]
fish[board[r][c]][2], fish[i][2] = fish[i][2], fish[board[r][c]][2]
else:
fish[i] = [nr, nc, d]
break
else:
fish[i][2] = d = (d+1)%8
dr, dc = delta[d]
nr, nc = r+dr, c+dc
r, c, d = fish[-1]
dr, dc = delta[d]
nr, nc = r+dr, c+dc
board[r][c] = 0
while 4 > nr >= 0 and 4 > nc >= 0:
if fish[board[nr][nc]]:
temp = board[nr][nc]
_board = [board[i][:] for i in range(4)]
_fish = [fish[i][:] for i in range(18)]
_fish[-1] = [nr, nc, fish[temp][2]]
_fish[temp].clear()
_board[nr][nc] = -1
dfs(_fish, _board, total+temp)
nr += dr
nc += dc
if total > res:
res = total
fish = [[] for _ in range(18)]
board = [[0]*4 for _ in range(4)]
for r in range(4):
temp = tuple(map(int, input().split()))
for c in range(4):
fish[temp[c*2]] = [r, c, temp[c*2+1]-1]
board[r][c] = temp[c*2]
fish[-1] = [0, 0, fish[board[0][0]][2]]
fish[board[0][0]] = []
res = board[0][0]
board[0][0] = -1
dfs(fish, board, res)
print(res)
'알고리즘' 카테고리의 다른 글
[BOJ] 19238 - 스타트 택시 (Python) (0) | 2023.03.31 |
---|---|
[BOJ] 19237 - 어른 상어 (Python) (0) | 2023.03.30 |
[BOJ] 11256 - 사탕 (Python) (0) | 2023.03.28 |
[BOJ] 20061 - 모노미노도미노 2 (Python) (0) | 2023.03.28 |
[BOJ] 17837 - 새로운 게임 2 (Python) (0) | 2023.03.27 |
Comments