CS/알고리즘

백준 14499번 주사위 굴리기 파이썬 풀이

happy_life 2022. 6. 2. 15:13

문제

크기가 N×M인 지도가 존재한다. 지도의 오른쪽은 동쪽, 위쪽은 북쪽이다. 이 지도의 위에 주사위가 하나 놓여져 있으며, 주사위의 전개도는 아래와 같다. 지도의 좌표는 (r, c)로 나타내며, r는 북쪽으로부터 떨어진 칸의 개수, c는 서쪽으로부터 떨어진 칸의 개수이다. 

  2
4 1 3
  5
  6

주사위는 지도 위에 윗 면이 1이고, 동쪽을 바라보는 방향이 3인 상태로 놓여져 있으며, 놓여져 있는 곳의 좌표는 (x, y) 이다. 가장 처음에 주사위에는 모든 면에 0이 적혀져 있다.

지도의 각 칸에는 정수가 하나씩 쓰여져 있다. 주사위를 굴렸을 때, 이동한 칸에 쓰여 있는 수가 0이면, 주사위의 바닥면에 쓰여 있는 수가 칸에 복사된다. 0이 아닌 경우에는 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사되며, 칸에 쓰여 있는 수는 0이 된다.

주사위를 놓은 곳의 좌표와 이동시키는 명령이 주어졌을 때, 주사위가 이동했을 때 마다 상단에 쓰여 있는 값을 구하는 프로그램을 작성하시오.

주사위는 지도의 바깥으로 이동시킬 수 없다. 만약 바깥으로 이동시키려고 하는 경우에는 해당 명령을 무시해야 하며, 출력도 하면 안 된다.

 

정답코드

# 주사위 굴리기
from collections import deque
import sys
input = sys.stdin.readline
# 상 뒤 동 서 앞 하 = 아래
dice = [0]+[0,0,0,0,0,0]
N, M, x , y, K = map(int, input().split())
graph = [list(map(int, input().split())) for _ in range(N)]
command_list = deque(map(int,input().split()))

nx, ny = x, y
while command_list:

    command = command_list.popleft()
    # 동쪽
    if command == 1:
        if 0 <= nx < N and 0 <= ny+1 < M:
            nx, ny = nx, ny+1
            tmp_bottom, tmp_east, tmp_top, tmp_west, tmp_front, tmp_back = dice[6], dice[3], dice[1], dice[4], dice[5], dice[2]
            
            dice[1] = tmp_west
            dice[2] = tmp_back
            dice[3] = tmp_top
            dice[4] = tmp_bottom
            dice[5] = tmp_front
            dice[6] = tmp_east
            #이동한 칸에 쓰여 있는 수가 0이면
            if graph[nx][ny] == 0:
                #  주사위의 바닥면에 쓰여 있는 수가 칸에 복사
                graph[nx][ny] = dice[6] 
            else:
                # 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사
                dice[6] = graph[nx][ny]
                graph[nx][ny] = 0 # 칸에 쓰여 있는 수는 0이 된다.
            print(dice[1])
    # 서쪽
    elif command == 2:
        if 0 <= nx < N and 0 <= ny-1 < M:
            nx, ny = nx, ny-1
            tmp_bottom, tmp_east, tmp_top, tmp_west, tmp_front, tmp_back = dice[6], dice[3], dice[1], dice[4], dice[5], dice[2]
            dice[1] = tmp_east
            dice[2] = tmp_back
            dice[3] = tmp_bottom
            dice[4] = tmp_top
            dice[5] = tmp_front
            dice[6] = tmp_west
             #이동한 칸에 쓰여 있는 수가 0이면
            if graph[nx][ny] == 0:
                #  주사위의 바닥면에 쓰여 있는 수가 칸에 복사
                graph[nx][ny] = dice[6]
            else:
                # 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사
                dice[6] = graph[nx][ny]
                graph[nx][ny] = 0 # 칸에 쓰여 있는 수는 0이 된다.
            print(dice[1])
    # 북쪽
    elif command == 3:
        if 0 <= nx-1 < N and 0 <= ny < M:
            nx, ny = nx-1, ny
            tmp_bottom, tmp_east, tmp_top, tmp_west, tmp_front, tmp_back = dice[6], dice[3], dice[1], dice[4], dice[5], dice[2]
            dice[1] = tmp_front
            dice[2] = tmp_top
            dice[3] = tmp_east
            dice[4] = tmp_west
            dice[5] = tmp_bottom
            dice[6] = tmp_back
            #이동한 칸에 쓰여 있는 수가 0이면
            if graph[nx][ny] == 0:
                #  주사위의 바닥면에 쓰여 있는 수가 칸에 복사
                graph[nx][ny] = dice[6]
            else:
                # 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사
                dice[6] = graph[nx][ny]
                graph[nx][ny] = 0 # 칸에 쓰여 있는 수는 0이 된다.
            print(dice[1])
    # 남쪽
    else:
        if 0 <= nx+1 < N and 0 <= ny < M:
            nx, ny = nx+1, ny
            tmp_bottom, tmp_east, tmp_top, tmp_west, tmp_front, tmp_back = dice[6], dice[3], dice[1], dice[4], dice[5], dice[2]
            dice[1] = tmp_back
            dice[2] = tmp_bottom
            dice[3] = tmp_east
            dice[4] = tmp_west
            dice[5] = tmp_top
            dice[6] = tmp_front 
            #이동한 칸에 쓰여 있는 수가 0이면
            if graph[nx][ny] == 0:
                #  주사위의 바닥면에 쓰여 있는 수가 칸에 복사
                graph[nx][ny] = dice[6]
            else:
                # 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사
                dice[6] = graph[nx][ny]
                graph[nx][ny] = 0 # 칸에 쓰여 있는 수는 0이 된다.
            print(dice[1])

풀이과정

1. 주사위가 각 방향으로 돌 때마다의 상대적 위치를 체크하여 초기화 해주었다.

2. 바깥으로 이동시키려고 하는 경우는 무시하므로 if 조건문을 통해 안에 있는 경우만 체크해주었다.

 

내 풀이의 단점

블로그에 작성한 이유인데, 중복되는 코드가 너무 많다.

 

1. 방향을 임시로 저장하는 tmp 코드 

-> 이 코드는 어느 방향이든 모두 같으므로 if 문의 최상단으로 올려도 상관이 없다.

 

2. 이동한 칸에 쓰여 있는 수가 0인 경우와 아닌 경우에 해당하는 코드가 중복된다.

-> 함수로 만들어 중복을 해결하였다.

함수를 통해 중복 제거

함수화할 때 역시나 고려해야할 점은 지역변수와 전역변수이다. 변수를 함수 내에서  재선언하지 않는 이상 

global 변수로 인식된다.

 

최적화한 정답 코드

# 주사위 굴리기
from collections import deque
import sys
input = sys.stdin.readline
# 상 뒤 동 서 앞 하 = 아래
dice = [0]+[0,0,0,0,0,0]
N, M, x , y, K = map(int, input().split())
graph = [list(map(int, input().split())) for _ in range(N)]
command_list = deque(map(int,input().split()))

def transfer(ax,ay):
#이동한 칸에 쓰여 있는 수가 0이면
    if graph[ax][ay] == 0:
        #  주사위의 바닥면에 쓰여 있는 수가 칸에 복사
        graph[ax][ay] = dice[6] 
    else:
        # 칸에 쓰여 있는 수가 주사위의 바닥면으로 복사
        dice[6] = graph[ax][ay]
        graph[ax][ay] = 0 # 칸에 쓰여 있는 수는 0이 된다.
    print(dice[1])

nx, ny = x, y
while command_list:
    command = command_list.popleft()

    tmp_bottom, tmp_east, tmp_top, tmp_west, tmp_front, tmp_back = dice[6], dice[3], dice[1], dice[4], dice[5], dice[2]

    # 동쪽
    if command == 1:
        if 0 <= nx < N and 0 <= ny+1 < M:
            nx, ny = nx, ny+1
            
            dice[1] = tmp_west
            dice[2] = tmp_back
            dice[3] = tmp_top
            dice[4] = tmp_bottom
            dice[5] = tmp_front
            dice[6] = tmp_east
            transfer(nx,ny)
    # 서쪽
    elif command == 2:
        if 0 <= nx < N and 0 <= ny-1 < M:
            nx, ny = nx, ny-1

            dice[1] = tmp_east
            dice[2] = tmp_back
            dice[3] = tmp_bottom
            dice[4] = tmp_top
            dice[5] = tmp_front
            dice[6] = tmp_west
            transfer(nx,ny)
    # 북쪽
    elif command == 3:
        if 0 <= nx-1 < N and 0 <= ny < M:
            nx, ny = nx-1, ny

            dice[1] = tmp_front
            dice[2] = tmp_top
            dice[3] = tmp_east
            dice[4] = tmp_west
            dice[5] = tmp_bottom
            dice[6] = tmp_back
            transfer(nx,ny)
    # 남쪽
    else:
        if 0 <= nx+1 < N and 0 <= ny < M:
            nx, ny = nx+1, ny

            dice[1] = tmp_back
            dice[2] = tmp_bottom
            dice[3] = tmp_east
            dice[4] = tmp_west
            dice[5] = tmp_top
            dice[6] = tmp_front 
            transfer(nx,ny)

# 문제 제대로 읽을 것
# 주사위를 굴렸을 때, 이동한 칸에 쓰여 있는 수가 0이면, 
# 주사위의 바닥면에 쓰여 있는 수가 칸에 복사된다.