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
- 타코트론
- YOLO
- 한국어 tts
- 윈도우
- TTS
- 딥러닝 보코더
- 학습
- Vocoder
- 한국어 음성 합성
- melgan
- waveglow
- text-to-speech
- tacotron
- 딥러닝
- deep voice
- 딥러닝 음성 합성
- korean tts
- 노래합성
- 보코더
- you only look once
- singing voice synthesis
- 음성 합성
Archives
- Today
- Total
chldkato
백준 7576 토마토 (파이썬) 본문
https://www.acmicpc.net/problem/7576
from collections import deque
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs():
result = 0
while q:
result += 1
for _ in range(len(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 < m:
if a[nx][ny] == 0:
a[nx][ny] = 1
q.append([nx, ny])
return result
m, n = map(int, input().split())
a, q = [], deque()
for i in range(n):
row = list(map(int, input().split()))
for j in range(m):
if row[j] == 1:
q.append([i, j])
a.append(row)
result = bfs() - 1
for i in range(n):
for j in range(m):
if a[i][j] == 0:
print(-1)
exit()
print(result)
'백준' 카테고리의 다른 글
백준 1012 유기농 배추 (파이썬) (0) | 2020.02.27 |
---|---|
백준 1697 숨바꼭질 (파이썬) (0) | 2020.02.27 |
백준 2667 단지번호붙이기 (파이썬) (0) | 2020.02.27 |
백준 2178 미로 탐색 (파이썬) (0) | 2020.02.27 |
백준 2931 가스관 (파이썬) (2) | 2020.02.26 |
Comments