일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DFS
- DP
- 코드트리
- minimum spanning tree
- 장고
- programmers
- BFS
- Bellman-Ford
- 최소스패닝트리
- 종합설계
- 마라마라빔
- Kruskal
- django
- SQL
- Planned
- 알고리즘
- 실습
- 데이터베이스
- 프로그래머스
- B대면노래방
- MyPlaylist
- 백트래킹
- 모각코
- 함밥
- 소프트웨어공학
- 그리디알고리즘
- 파이썬
- codetree
- 백준
- 동적계획법
Archives
- Today
- Total
Leta Learns
[Python] 백준 7562번 - 나이트의 이동 본문
문제 https://www.acmicpc.net/problem/7562
단순 bfs 였다.
이제 그래프는 잠시 쉬어도 될 것 같은 느낌..
import sys
from collections import deque
input = sys.stdin.readline
def bfs(cur_y, cur_x):
chess[cur_y][cur_x] = 1
q = deque()
q.append((cur_y, cur_x))
while q:
y, x = q.popleft()
if y == des_y and x == des_x:
return chess[des_y][des_x] - 1
dxdy = [(-2, -1), (-2, 1), (-1, -2), (-1, 2), (1, -2), (1, 2), (2, -1), (2, 1)]
for dy, dx in dxdy:
ny = y + dy
nx = x + dx
if -1 < nx < l and -1 < ny < l:
if chess[ny][nx] == 0:
chess[ny][nx] = chess[y][x] + 1
q.append((ny, nx))
t = int(input())
for _ in range(t):
l = int(input())
chess = [[0 for _ in range(l)] for _ in range(l)]
cur_y, cur_x = map(int, input().split())
des_y, des_x = map(int, input().split())
print(bfs(cur_y, cur_x))
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 2309번 - 일곱 난쟁이 (0) | 2022.02.06 |
---|---|
[Python] 백준 2589번 - 보물섬 (0) | 2022.02.06 |
[Python] 백준 1260번 - DFS와 BFS (0) | 2022.01.27 |
[Python] 백준 10026번 - 적록색약 (0) | 2022.01.25 |
[Python] 백준 2583번 - 영역 구하기 (0) | 2022.01.24 |
Comments