결론) 캐릭터가 방문한 칸의 수 출력
오 복잡한데
맵 하나 더 만들어서 방문여부 체크해야겠다
n, m = map(int, input().split())
x, y, direction = map(int, input().split())
arr = []
for _ in range (n) :
arr.append(list(map(int, input().split())))
# 방문한 위치를 저장하기 위한 맵을 생성하여 0 으로 초기화
d = [[0]*m for _ in range(n)]
d[x][y] = 1
dx = [-1, 0, 1, 0]
dy = [0, 1, 0, -1]
# 왼쪽으로 회전
def turn_left() :
global direction
direction -= 1
if direction == -1 :
direction = 3
# 시뮬레이션 시작
count = 1
turn_time = 0
while True :
# 왼쪽으로 회전
turn_left()
nx = x + dx[direction]
ny = y + dy[direction]
# 회전한 이후 정면에 가보지 않은 칸이 존재하는 경우 이동
if d[nx][ny] == 0 and arr[nx][ny] == 0 :
d[nx][ny] = 1
x = nx
y = ny
count += 1
turn_time = 0
continue
# 회전한 이후 정면에 가보지 않은 칸이 없거나 바다인 경우
else :
turn_time += 1
# 네 방향 모두 갈 수 없는 경우
if turn_time == 4:
nx = x - dx[direction]
ny = y - dy[direction]
# 뒤로 갈 수 있다면 이동하기
if arr[nx][ny] == 0:
x = nx
y = ny
# 뒤가 바다로 막혀 있는 경우
else :
break
turn_time = 0
print(count)
나중에 기억 흐려질때쯤 다시 풀자!