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
- 노래합성
- TTS
- 타코트론
- YOLO
- deep voice
- waveglow
- melgan
- 딥러닝
- 학습
- korean tts
- Vocoder
- 딥러닝 보코더
- 보코더
- 한국어 음성 합성
- tacotron
- 한국어 tts
- 음성 합성
- 트레이닝
- text-to-speech
- singing voice synthesis
- 윈도우
- DCTTS
- you only look once
- 딥러닝 음성 합성
Archives
- Today
- Total
chldkato
백준 7562 나이트의 이동 (파이썬) 본문
https://www.acmicpc.net/problem/7562
dx, dy를 나이트의 이동경로에 맞게 설정한 후 bfs를 수행하면 되는 문제
from collections import deque
dx = [1, 1, 2, 2, -1, -1, -2, -2]
dy = [2, -2, 1, -1, 2, -2, 1, -1]
def bfs(x, y, x_end, y_end):
q = deque()
q.append([x, y])
a[x][y] = 1
while q:
x, y = q.popleft()
if x == x_end and y == y_end:
return a[x][y]-1
for i in range(8):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < l and 0 <= ny < l:
if a[nx][ny] == 0:
q.append([nx, ny])
a[nx][ny] = a[x][y] + 1
tc = int(input())
while tc:
l = int(input())
a = [[0]*l for _ in range(l)]
x1, y1 = map(int, input().split())
x2, y2 = map(int, input().split())
if x1 == x2 and y1 == y2:
print(0)
tc -= 1
continue
ans = bfs(x1, y1, x2, y2)
print(ans)
tc -= 1
'백준' 카테고리의 다른 글
백준 2468 안전 영역 (파이썬) (0) | 2020.02.16 |
---|---|
백준 2583 영역 구하기 (파이썬) (0) | 2020.02.16 |
백준 6603 로또 (파이썬) (3) | 2020.02.16 |
백준 7569 토마토 (파이썬) (0) | 2020.02.16 |
백준 14502 연구소 (파이썬) (0) | 2020.02.16 |
Comments