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
- singing voice synthesis
- text-to-speech
- melgan
- YOLO
- TTS
- Vocoder
- 윈도우
- 노래합성
- 한국어 tts
- 딥러닝 보코더
- DCTTS
- you only look once
- korean tts
- 한국어 음성 합성
- 트레이닝
- 딥러닝
- 음성 합성
- 학습
- tacotron
- 타코트론
- 보코더
- 딥러닝 음성 합성
- waveglow
- deep voice
Archives
- Today
- Total
chldkato
백준 7576 토마토 (파이썬) 본문
https://www.acmicpc.net/problem/7576
7576번: 토마토
첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토들의 정보가 주어진다. 즉, 둘째 줄부터 N개의 줄에는 상자에 담긴 토마토의 정보가 주어진다. 하나의 줄에는 상자 가로줄에 들어있는 토마토의 상태가 M개의 정수로 주어진다. 정수 1은 익은 토마토, 정수 0은 익지 않은 토마토, 정수 -1은 토마
www.acmicpc.net
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