244. 주사위 굴리기
1. Python
import sys
input = sys.stdin.readline
n, m, x, y, k = map(int, input().split())
#1, 2, 3, 4, 5, 6
dice = [0] * 6
board = [list(map(int, input().split())) for _ in range(n)]
# 1: 동, 2:서, 3:북, 4: 남
mlist = list(map(int, input().split()))
dx = [0, 0, -1, 1]
dy = [1, -1, 0, 0]
for i in range(k):
d = mlist[i] - 1
nx = x + dx[d]
ny = y + dy[d]
if 0 <= nx < n and 0 <= ny < m:
if d == 0:
dice[0], dice[2], dice[3], dice[5] = dice[3], dice[0], dice[5], dice[2]
elif d== 1:
dice[0], dice[2], dice[3], dice[5] = dice[2], dice[5], dice[0], dice[3]
elif d == 2:
dice[0], dice[1], dice[4], dice[5] = dice[4], dice[0], dice[5], dice[1]
else:
dice[0], dice[1], dice[4], dice[5] = dice[1], dice[5], dice[0], dice[4]
if board[nx][ny] == 0:
board[nx][ny] = dice[5]
else:
dice[5] = board[nx][ny]
board[nx][ny] = 0
x, y = nx, ny
print(dice[0])
Author And Source
이 문제에 관하여(244. 주사위 굴리기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@corone_hi/244.-주사위-굴리기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)