문제
https://www.acmicpc.net/problem/14499
14499번: 주사위 굴리기
첫째 줄에 지도의 세로 크기 N, 가로 크기 M (1 ≤ N, M ≤ 20), 주사위를 놓은 곳의 좌표 x, y(0 ≤ x ≤ N-1, 0 ≤ y ≤ M-1), 그리고 명령의 개수 K (1 ≤ K ≤ 1,000)가 주어진다. 둘째 줄부터 N개의 줄에 지
www.acmicpc.net
풀이
삼성 기출답게 시뮬레이션, 빡구현 문제다.
주사위의 절대적인 위치를 배열로 정해둔다. (난 문제에서 나온 숫자와 위치를 매칭했다.)
이후 동, 서, 남, 북 이동시에 갱신되는 로직을 각각 작성하면 된다.
(이건 실제로 주사위 한 번 굴려보거나 그림 그려보면 된다.)
그리고 이동한 칸의 값을 보고 복사여부를 따져주면 된다.
코드
# 동쪽으로 구르면
def move_east():
global dice
temp = dice[3]
dice[3] = dice[1]
dice[1] = dice[4]
dice[4] = dice[6]
dice[6] = temp
# 서쪽으로 구르면
def move_west():
global dice
temp = dice[4]
dice[4] = dice[1]
dice[1] = dice[3]
dice[3] = dice[6]
dice[6] = temp
# 북쪽으로 구르면
def move_north():
global dice
temp = dice[2]
dice[2] = dice[1]
dice[1] = dice[5]
dice[5] = dice[6]
dice[6] = temp
# 남쪽으로 구르면
def move_south():
global dice
temp = dice[5]
dice[5] = dice[1]
dice[1] = dice[2]
dice[2] = dice[6]
dice[6] = temp
def renewal_dice(nx, ny):
global dice, board
# 0이라면 바닥면을 복사해준다.
if board[nx][ny] == 0:
board[nx][ny] = dice[6]
else:
dice[6] = board[nx][ny]
board[nx][ny] = 0
# empty, 동, 서, 북, 남 순서
dx = [-1, 0, 0, -1, 1 ]
dy = [-1, 1, -1, 0, 0]
dice = [-1, 0, 0, 0, 0, 0, 0]
n, m, x, y, k = map(int, input().split())
board = [list(map(int, input().split())) for _ in range(n)]
opers = list(map(int, input().split()))
for oper in opers:
# 명령 받음
nx = x + dx[oper]
ny = y + dy[oper]
if 0 <= nx < n and 0 <= ny < m:
if oper == 1: move_east()
if oper == 2: move_west()
if oper == 3: move_north()
if oper == 4: move_south()
ground_value = board[nx][ny]
renewal_dice(nx, ny)
x = nx
y = ny
print(dice[1])
후기
골드4 레벨까지인가..? 싶다
'백준' 카테고리의 다른 글
17141 - 연구소 2 (1) | 2023.06.14 |
---|---|
14890 - 경사로 (0) | 2023.06.13 |
16236 - 아기 상어 (1) | 2023.06.10 |
1197 - 최소 스패닝 트리 (0) | 2023.06.10 |
2579 - 계단 오르기 (0) | 2023.06.10 |