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
- 딥러닝
- 노래합성
- 딥러닝 보코더
- 트레이닝
- Vocoder
- you only look once
- 학습
- 보코더
- DCTTS
- singing voice synthesis
- 한국어 음성 합성
- waveglow
- tacotron
- TTS
- 딥러닝 음성 합성
- YOLO
- 윈도우
- korean tts
- 한국어 tts
- text-to-speech
- 타코트론
- 음성 합성
- deep voice
- melgan
Archives
- Today
- Total
chldkato
백준 2573 빙산 (파이썬) 본문
https://www.acmicpc.net/problem/2573
1. 빙산이 있는 위치에서 상하좌우에 물(0)의 개수만큼 빙산을 녹인다. 이 때 0보다 작아지면 안된다
2. 빙산이 녹은 뒤 bfs로 몇 개로 분리되었는지 구한다
3. 2개 이상이면 걸린 시간을 출력, 분리되지 않으면 더 이상 분리할 수 없을 때까지 과정 반복
from collections import deque
import sys, copy
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y):
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 < n and 0 <= ny < m:
if na[nx][ny] != 0 and c[nx][ny] == 0:
c[nx][ny] = 1
q.append([nx, ny])
def ice():
a2 = copy.deepcopy(a)
for i in range(n):
for j in range(m):
if a[i][j] != 0:
for k in range(4):
nx = i + dx[k]
ny = j + dy[k]
if 0 <= nx < n and 0 <= ny < m:
if a[nx][ny] == 0:
a2[i][j] -= 1
if a2[i][j] == 0:
break
return a2
n, m = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(n)]
q = deque()
year = 1
while True:
na = ice()
flag = 0
for i in na:
flag += i.count(0)
if flag == n*m:
print(0)
sys.exit()
a = copy.deepcopy(na)
c = [[0]*m for _ in range(n)]
cnt = 1
for i in range(n):
for j in range(m):
if na[i][j] != 0 and c[i][j] == 0:
if cnt == 2:
print(year)
sys.exit()
bfs(i, j)
cnt += 1
year += 1
'백준' 카테고리의 다른 글
백준 9019 DSLR (파이썬) (0) | 2020.02.17 |
---|---|
백준 2146 다리 만들기 (파이썬) (0) | 2020.02.17 |
백준 5014 스타트링크 (파이썬) (0) | 2020.02.17 |
백준 1707 이분 그래프 (파이썬) (0) | 2020.02.16 |
백준 3055 탈출 (파이썬) (0) | 2020.02.16 |
Comments