🏷 문제

💡 코드
from collections import deque
def bfs(start_x, start_y, end_x, end_y):
q = deque()
graph[start_x][start_y] = 1
q.append([start_x, start_y])
while q:
x, y = q.popleft()
if x == end_x and y == end_y:
return (graph[x][y]-1)
for i in range(len(case)):
newx = x+case[i][0]
newy = y+case[i][1]
if (0 <= newx < chess_size) and (0 <= newy < chess_size):
if graph[newx][newy] == 0:
q.append([newx, newy])
graph[newx][newy] = graph[x][y] + 1
test_case = int(input())
case = [[2,1],[1,2],[-1,2],[-2,1],[2,-1],[1,-2],[-1,-2],[-2,-1]]
for i in range(test_case):
chess_size = int(input())
start_x, start_y = map(int,input().split())
end_x, end_y = map(int,input().split())
graph = [[0] * chess_size for _ in range(chess_size)]
if start_x == end_x and start_y == end_y:
print(0)
else:
print(bfs(start_x, start_y, end_x, end_y))
🔑