Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 이진탐색
- 주석
- 영어회화
- fibo
- English
- 디피
- 다이나믹프로그래밍
- dynamicProgramming
- 안드로이드
- 탑다운
- 메모이제이션
- topdown
- XML주석
- ㅂ
- 이진탐색 #나무 자르기
- 오픽노잼
- opic
- 피보나치수열
- 오픽점수잘받는방법
- 오픽
- stack 스택
- XML
- 바텀업
- 오픽공부법
- 오픽노잼공부방법
- 안드로이드주석
- dp
- 영어말하기
- 오픽가격
Archives
RUBY
[BOJ] 나이트의 이동 7562 본문
출처:: https://www.acmicpc.net/problem/7562
1. 문제 이해 및 해결과정
- 이동 횟수 기록하는 방법
visited[nh][nw]=visited[h][w]+1
2. 풀이방법
1.BFS
#나이트의 이동
#https://www.acmicpc.net/problem/7562
import sys
from collections import deque
sys.stdin = open("input.txt","r")
dh=[-2,-1,1,2,2,1,-1,-2]
dw=[1,2,2,1,-1,-2,-2,-1]
t=int(input())
def BFS(h,w):
Q=deque()
Q.append((h,w))
visited[h][w]=1
if h==eh and w==ew:
return
while Q:
h,w=Q.popleft()
for i in range(8):
nh=h+dh[i]
nw=w+dw[i]
if 0<=nh<n and 0<=nw<n and visited[nh][nw]==0:
Q.append((nh,nw))
visited[nh][nw]=visited[h][w]+1
while t>0:
t-=1
n=int(input())
board=[[0]*n for _ in range(n)]
visited = [[0] * n for _ in range(n)]
sh,sw=map(int,input().split())
eh, ew = map(int, input().split())
BFS(sh,sw)
print(visited[eh][ew]-1)
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[BOJ] 이분그래프 1707 ★ (0) | 2020.07.03 |
---|---|
[BOJ] ABCDE 13023 (0) | 2020.07.03 |
[BOJ] N과 M (12) 15666 (0) | 2020.07.01 |
[BOJ] N과 M (11) 15665 (0) | 2020.07.01 |
[BOJ] N과 M (10) 15664 R (0) | 2020.06.30 |
Comments