(Python/LV3) 아이템 줍기
첫 번째 시도 def solution(rectangle, characterX, characterY, itemX, itemY): graph = [[0] * 51 for _ in range(51)] move = [(0, 1), (0, -1), (-1, 0), (1, 0)] for rec in rectangle: x1, y1, x2, y2 = rec for x in range(x1, x2 + 1): for y in range(y1, y2 + 1): graph[x][y] = 1 visited = [[False] * 51 for _ in range(51)] Q = deque() Q.append((0,0)) visited[0][0] = True border = deque() while Q: x, y = Q.popl..
2024. 1. 9.