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
- 한국어 음성 합성
- text-to-speech
- deep voice
- korean tts
- singing voice synthesis
- 트레이닝
- YOLO
- 딥러닝
- you only look once
- 학습
- 딥러닝 보코더
- melgan
- 딥러닝 음성 합성
- 음성 합성
- waveglow
- Vocoder
- DCTTS
- 한국어 tts
- 보코더
- 윈도우
- tacotron
- 타코트론
- 노래합성
- TTS
Archives
- Today
- Total
chldkato
백준 2468 안전 영역 (파이썬) 본문
https://www.acmicpc.net/problem/2468
1. 비가 내린 이후의 지역을 구한다
2. bfs로 안전한 영역의 개수를 구한다
3. 최대값을 구하여 출력
from collections import deque
import copy
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 < n:
if m[nx][ny] != 0 and c[nx][ny] == 0:
q.append([nx, ny])
c[nx][ny] = 1
def rain(rain_height):
for i in range(n):
for j in range(n):
if m[i][j] <= rain_height:
m[i][j] = 0
n = int(input())
a = [list(map(int, input().split())) for _ in range(n)]
q = deque()
ans = 0
height = 0
for i in a:
max_height = max(i)
height = max(max_height, height)
height -= 1
while height >= 0:
m = copy.deepcopy(a)
c = [[0]*n for _ in range(n)]
cnt = 0
rain(height)
for i in range(n):
for j in range(n):
if m[i][j] != 0 and c[i][j] == 0:
bfs(i, j)
cnt += 1
ans = max(ans, cnt)
height -= 1
print(ans)
'백준' 카테고리의 다른 글
백준 10026 적록색약 (파이썬) (2) | 2020.02.16 |
---|---|
백준 1697 숨바꼭질 (파이썬) (0) | 2020.02.16 |
백준 2583 영역 구하기 (파이썬) (0) | 2020.02.16 |
백준 6603 로또 (파이썬) (3) | 2020.02.16 |
백준 7562 나이트의 이동 (파이썬) (0) | 2020.02.16 |
Comments