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
- 문자열
- BFS
- 수학
- 정수론
- 이분 탐색
- 싸피
- 구현
- 2357
- 모던 JavaScript 튜토리얼
- 슬라이딩 윈도우
- SSAFY
- 브루트포스
- 트리
- JavaScript
- 해시 테이블
- 에라토스테네스의 체
- 세그먼트 트리
- DP
- 맵
- 그래프
- 투 포인터
- 애드 혹
- DFS
- 누적 합
- 플로이드-워셜
- Python
- boj
- 정렬
- 그리디
- 13164
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 23288 - 주사위 굴리기 2 (Python) 본문
아이디어
각 칸에서 획득하는 점수를 계산한 후 주사위가 이동할 때마다 주사위 상태를 변경하며 점수를 더해 나간다.
풀이
import sys
input = sys.stdin.readline
delta = [(0, 1), (1, 0), (0, -1), (-1, 0)]
turned = [
(3, 1, 0, 5, 4, 2),
(1, 5, 2, 3, 0, 4),
(2, 1, 5, 0, 4, 3),
(4, 0, 2, 3, 5, 1)
]
def solution():
N, M, K = map(int, input().split())
board = [tuple(map(int, input().split())) for _ in range(N)]
scores = [[0]*M for _ in range(N)]
for i in range(N):
for j in range(M):
if scores[i][j] == 0:
scores[i][j] = 1
queue = [(i, j)]
temp = [(i, j)]
while queue:
r, c = queue.pop(0)
for dr, dc in delta:
nr, nc = r+dr, c+dc
if N > nr >= 0 and M > nc >= 0:
if scores[nr][nc] == 0 and board[nr][nc] == board[r][c]:
scores[nr][nc] = 1
queue.append((nr, nc))
temp.append((nr, nc))
score = board[i][j]*len(temp)
for r, c in temp:
scores[r][c] = score
dice = [1, 2, 3, 4, 5, 6]
res = d = r = c = 0
for _ in range(K):
dr, dc = delta[d]
nr, nc = r+dr, c+dc
if N > nr >= 0 and M > nc >= 0:
r, c = nr, nc
else:
d = (d+2)%4
dr, dc = delta[d]
r, c = r+dr, c+dc
res += scores[r][c]
temp = [0]*6
for i in range(6):
temp[i] = dice[turned[d][i]]
dice = temp
if dice[5] > board[r][c]:
d = (d+1)%4
elif dice[5] < board[r][c]:
d = (d+3)%4
print(res)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 17825 - 주사위 윷놀이 (Python) (0) | 2023.03.26 |
---|---|
[BOJ] 13711 - LCS 4 (Python) (0) | 2023.03.25 |
[BOJ] 1817 - 짐 챙기는 숌 (Python) (0) | 2023.03.24 |
[BOJ] 5430 - AC (Python) (0) | 2023.03.24 |
[BOJ] 2568 - 전깃줄 - 2 (Python) (0) | 2023.03.24 |
Comments