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
- DCTTS
- 보코더
- 트레이닝
- Vocoder
- 노래합성
- 학습
- text-to-speech
- 윈도우
- 한국어 tts
- singing voice synthesis
- 한국어 음성 합성
- 타코트론
- 딥러닝 보코더
- you only look once
- waveglow
- korean tts
- 딥러닝 음성 합성
- melgan
- tacotron
- 딥러닝
- YOLO
- 음성 합성
- TTS
- deep voice
Archives
- Today
- Total
chldkato
백준 1600 말이 되고픈 원숭이 (파이썬) 본문
https://www.acmicpc.net/problem/1600
1. 이동 경로를 체크하는 배열을 3차로 구성
2. 말로 이동할 수 있는 횟수를 넘지 않으면 말로 이동하는 경우와 원숭이로 이동하는 경우를 둘 다 체크
말로 이동할 경우 세번째 차수에 1을 더해 말로 이동한 횟수를 체크하는 변수로 설정
3. 이동할 수 있는 횟수를 모두 사용한 경우 원숭이로만 이동
4. 목적지에 도착하면 이동 거리를 출력
from collections import deque
import sys
input = sys.stdin.readline
dx1 = [1, -1, 0, 0]
dy1 = [0, 0, 1, -1]
dx2 = [1, 1, -1, -1, 2, 2, -2, -2]
dy2 = [2, -2, 2, -2, 1, -1, 1, -1]
def bfs():
q.append([0, 0, 0])
c[0][0][0] = 1
while q:
x, y, z = q.popleft()
if x == h-1 and y == w-1:
print(c[x][y][z]-1)
return
if z < k:
horse(x, y, z)
monkey(x, y, z)
elif z == k:
monkey(x, y, z)
print(-1)
def horse(x, y, z):
for i in range(8):
nx = x + dx2[i]
ny = y + dy2[i]
if 0 <= nx < h and 0 <= ny < w:
if a[nx][ny] == 0 and c[nx][ny][z+1] == 0:
c[nx][ny][z+1] = c[x][y][z] + 1
q.append([nx, ny, z+1])
def monkey(x, y, z):
for i in range(4):
nx = x + dx1[i]
ny = y + dy1[i]
if 0 <= nx < h and 0 <= ny < w:
if a[nx][ny] == 0 and c[nx][ny][z] == 0:
c[nx][ny][z] = c[x][y][z] + 1
q.append([nx, ny, z])
k = int(input())
w, h = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]
c = [[[0]*(k+1) for _ in range(w)] for _ in range(h)]
q = deque()
bfs()
'백준' 카테고리의 다른 글
백준 9372 상근이의 여행 (파이썬) (0) | 2020.02.18 |
---|---|
백준 5427 불 (파이썬) (0) | 2020.02.17 |
백준 1325 효율적인 해킹 (파이썬) (0) | 2020.02.17 |
백준 1613 역사 (파이썬) (0) | 2020.02.17 |
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) (0) | 2020.02.17 |
Comments