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
- you only look once
- DCTTS
- 한국어 음성 합성
- YOLO
- 타코트론
- text-to-speech
- 딥러닝 보코더
- 딥러닝 음성 합성
- waveglow
- tacotron
- 한국어 tts
- 노래합성
- 딥러닝
- korean tts
- melgan
- 음성 합성
- 보코더
- 학습
- deep voice
- Vocoder
- 트레이닝
- TTS
- 윈도우
- singing voice synthesis
Archives
- Today
- Total
chldkato
백준 4991 로봇 청소기 (파이썬) 본문
https://www.acmicpc.net/problem/4991
1. o의 위치를 따로 변수에 저장해두고 * 들을 리스트안에 저장한다
2. o로부터 모든 *에 대한 거리를 구한다
3. 모든 * 간의 거리를 구한다
4. 순열로 갈 수 있는 모든 경로를 구해놓고 거리를 다 더해본 후 최소값 출력
from collections import deque
from itertools import permutations
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y):
q = deque()
c = [[0]*w for _ in range(h)]
q.append([x, y])
c[x][y] = 1
while q:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < h and 0 <= ny < w:
if a[nx][ny] != 'x' and not c[nx][ny]:
c[nx][ny] = c[x][y] + 1
q.append([nx, ny])
return c
while True:
w, h = map(int, input().split())
if not w and not h:
break
a, d = [], []
for i in range(h):
row = list(input().strip())
a.append(row)
for j, k in enumerate(row):
if k == 'o':
sx, sy = i, j
elif k == '*':
d.append([i, j])
r2d, flag = [], 0
c = bfs(sx, sy)
for i, j in d:
if not c[i][j]:
flag = 1
break
r2d.append(c[i][j]-1)
if flag:
print(-1)
continue
d2d = [[0]*len(d) for _ in range(len(d))]
for i in range(len(d)-1):
c = bfs(d[i][0], d[i][1])
for j in range(i+1, len(d)):
d2d[i][j] = c[d[j][0]][d[j][1]]-1
d2d[j][i] = d2d[i][j]
p = list(permutations([i for i in range(len(d2d))]))
ans = sys.maxsize
for i in p:
dist = 0
dist += r2d[i[0]]
nfrom = i[0]
for j in range(1, len(i)):
nto = i[j]
dist += d2d[nfrom][nto]
nfrom = nto
ans = min(ans, dist)
print(ans)
'백준' 카테고리의 다른 글
백준 2151 거울 설치 (파이썬) (0) | 2020.02.25 |
---|---|
백준 1981 배열에서 이동 (파이썬) (0) | 2020.02.25 |
백준 1039 교환 (파이썬) (1) | 2020.02.24 |
백준 2842 집배원 한상덕 (파이썬) (0) | 2020.02.24 |
백준 6087 레이저 통신 (파이썬) (0) | 2020.02.23 |
Comments