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
- Vocoder
- 한국어 음성 합성
- DCTTS
- singing voice synthesis
- melgan
- TTS
- 한국어 tts
- 노래합성
- 보코더
- waveglow
- 딥러닝 음성 합성
- deep voice
- you only look once
- 딥러닝 보코더
- 윈도우
- tacotron
- 트레이닝
- korean tts
- 타코트론
- 음성 합성
- 딥러닝
- text-to-speech
- 학습
- YOLO
Archives
- Today
- Total
chldkato
백준 1981 배열에서 이동 (파이썬) 본문
https://www.acmicpc.net/problem/1981
1. 목적지까지 도착할 수 있는 범위의 왼쪽, 오른쪽에 대한 범위를 구한다.
왼쪽은 배열 중 최소값과 (0, 0), (n-1, n-1) 값 중 최소값 사이에 있고
오른쪽은 0, 0), (n-1, n-1) 값 중 최대값과 배열 중 최대값 사이에 있다
2. bfs로 목적지에 도착하면 최소값을 갱신하고 범위의 왼쪽값을 증가시킨다
3. 도착할 수 없으면 범위의 오른쪽값을 증가시킨다.
만약, 왼쪽과 오른쪽을 이전에 증가한 경우가 있으면 왼쪽과 오른쪽을 둘 다 증가시켜 다음 범위를 체크한다
4. 모든 경우를 확인한 후 최소값을 출력
from collections import deque
import sys
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs():
q = deque()
c = [[0]*n for _ in range(n)]
q.append([0, 0])
c[0][0] = 1
while q:
x, y = q.popleft()
if x == n-1 and y == n-1:
return 1
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n:
if left <= a[nx][ny] <= right and not c[nx][ny]:
c[nx][ny] = 1
q.append([nx, ny])
return 0
n = int(input())
a, r_max, l_min = [], 0, sys.maxsize
for _ in range(n):
row = list(map(int, input().split()))
a.append(row)
l_min = min(l_min, min(row))
r_max = max(r_max, max(row))
l_max = min(a[0][0], a[n-1][n-1])
r_min = max(a[0][0], a[n-1][n-1])
left, right = l_min, r_min
ans = sys.maxsize
while l_min <= left <= l_max and r_min <= right <= r_max:
l_flag, r_flag = 0, 0
if bfs():
ans = min(ans, right - left)
left += 1
l_flag = 1
else:
if l_flag and r_flag:
left += 1
right += 1
else:
right += 1
r_flag = 1
print(ans)
'백준' 카테고리의 다른 글
백준 2931 가스관 (파이썬) (2) | 2020.02.26 |
---|---|
백준 2151 거울 설치 (파이썬) (0) | 2020.02.25 |
백준 4991 로봇 청소기 (파이썬) (0) | 2020.02.25 |
백준 1039 교환 (파이썬) (1) | 2020.02.24 |
백준 2842 집배원 한상덕 (파이썬) (0) | 2020.02.24 |
Comments