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 | 31 |
Tags
- 한국어 tts
- 타코트론
- 딥러닝 음성 합성
- singing voice synthesis
- 한국어 음성 합성
- tacotron
- waveglow
- Vocoder
- text-to-speech
- 음성 합성
- 학습
- you only look once
- 노래합성
- YOLO
- 윈도우
- 보코더
- 트레이닝
- deep voice
- melgan
- TTS
- DCTTS
- 딥러닝
- korean tts
- 딥러닝 보코더
Archives
- Today
- Total
chldkato
백준 2146 다리 만들기 (파이썬) 본문
https://www.acmicpc.net/problem/2146
섬의 가장자리에서 다음 섬에 도착할 때까지의 경로를 매번 bfs로 구했더니 런타임에러가 떴다
1. 섬이 몇개있는지 bfs로 구한다
2. 섬 중에서 하나를 선택해 섬의 크기를 늘려가면서 다른 섬에 닿을 때까지의 거리를 구한다.
3. 과정 2를 전체 섬에 대하여 구한 후 최소값을 출력
from collections import deque
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs1(x, y, cnt):
q.append([x, y])
c1[x][y] = cnt
while q:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n:
if a[nx][ny] == 1 and c1[nx][ny] == 0:
c1[nx][ny] = cnt
q.append([nx, ny])
def bfs2(num):
while q:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n:
if a[nx][ny] == 1 and c1[nx][ny] != num:
return c2[x][y]-1
if a[nx][ny] == 0 and c2[nx][ny] == 0:
c2[nx][ny] = c2[x][y] + 1
q.append([nx, ny])
n = int(input())
a = [list(map(int, input().split())) for _ in range(n)]
c1 = [[0]*n for _ in range(n)]
q, q2 = deque(), deque()
cnt = 1
for i in range(n):
for j in range(n):
if a[i][j] == 1 and c1[i][j] == 0:
bfs1(i, j, cnt)
cnt += 1
ans = sys.maxsize
for k in range(1, cnt):
q = deque()
c2 = [[0] * n for _ in range(n)]
for i in range(n):
for j in range(n):
if a[i][j] == 1 and c1[i][j] == k:
q.append([i, j])
c2[i][j] = 1
res = bfs2(k)
ans = min(ans, res)
print(ans)
'백준' 카테고리의 다른 글
백준 1963 소수 경로 (파이썬) (0) | 2020.02.17 |
---|---|
백준 9019 DSLR (파이썬) (0) | 2020.02.17 |
백준 2573 빙산 (파이썬) (0) | 2020.02.17 |
백준 5014 스타트링크 (파이썬) (0) | 2020.02.17 |
백준 1707 이분 그래프 (파이썬) (0) | 2020.02.16 |
Comments