Post

리코쳇 로봇 lv0

🌈문제 링크

Desktop View

Desktop View

Desktop View

풀이

입출력 예의 board 중 1번째를 나타낸 것이다

(행렬 외부로는 나갈 수 없다.)

1
2
3
<참고>
행렬에서는 R이 (1,7) 위치
파이썬에서는 R이 board[0][6] 위치

5x7 행렬

Desktop View

Desktop View

Desktop View

Desktop View

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from collections import deque

def move(board, r, c, direction):
    # 0: up
    # 1: right
    # 2: down
    # 3: left
    if direction == 0:
        while r >= 0 and board[r][c] != 'D':
            r -= 1
        r += 1
    elif direction == 1:
        while c < len(board[0]) and board[r][c] != 'D':
            c += 1
        c -= 1
    elif direction == 2:
        while r < len(board) and board[r][c] != 'D':
            r += 1
        r -= 1
    else:
        while c >= 0 and board[r][c] != 'D':
            c -= 1
        c += 1

    return r, c

def bfs(board, r, c, goal_r, goal_c):
    q = deque()
    visited = set()

    q.append((r, c, 0)) # 첫 시작지점으로 행과 열, 움직인 횟수0 
    visited.add((r, c))
    while len(q) > 0:
        r, c, m = q.popleft()
        if r == goal_r and c == goal_c:
            return m # 목표 위치에 도달하면 m(움직인 횟수) 반환

        for direction in [0, 1, 2, 3]:
            new_r, new_c = move(board, r, c, direction)
            if (new_r, new_c) not in visited: # 새로운 지점에 방문 안했으면
                q.append((new_r, new_c, m + 1)) # 큐에 추가(현재까지 움직인 횟수 +1 하여)
                visited.add((new_r, new_c))

    return -1 # 목표 위치에 도달 못하면 -1 반환

def solution(board):
    # 2차원 board에서 0~4행을 탐색해 문자 'R'이 나오는 위치 찾으면 종료
    found = False
    for r, row in enumerate(board): # r 인덱스     row 해당 행
        for c, char in enumerate(row): # c 인덱스    char 해당 문자
            if char == 'R':
                found = True
                break
        if found:
            break

    # 2차원 board에서 0~4행을 탐색해 문자 'G'이 나오는 위치 찾으면 종료
    found = False
    for goal_r, row in enumerate(board):
        for goal_c, char in enumerate(row):
            if char == 'G':
                found = True
                break
        if found:
            break

    print(r, c, goal_r, goal_c)
    answer = bfs(board, r, c, goal_r, goal_c)
    return answer

알면 좋을 듯

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 'R'을 찾아보자

board = ["...D..R",
         ".D.G...",
         "....D.D",
         "D....D.",
         "..D...."]

for r, row in enumerate(board):
# => r:0,  row: [...D..R]
# => r:1,  row: [.D.G...]
# => r:2,  row: [....D.D]
# => r:3,  row: [D....D.]
# => r:4,  row: [..D....]

for c, char in enumerate(row):
# => [...D..R]
# c: 인덱스 0~6    char[0]~[6]: 각row 별 문자  

# => [.D.G...]
# c: 인덱스 0~6    char[0]~[6]: 각row 별 문자 

이런식으로 r4까지 반복




참고

  1. https://velog.io/@k_bobin/프로그래머스Python-리코쳇-로봇
  2. https://www.ai-bio.info/programmers/169199
This post is licensed under CC BY 4.0 by the author.
3D GIF