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
- you only look once
- 딥러닝 음성 합성
- melgan
- text-to-speech
- singing voice synthesis
- 음성 합성
- deep voice
- 한국어 tts
- TTS
- waveglow
- 보코더
- YOLO
- 학습
- DCTTS
- Vocoder
- 트레이닝
- 타코트론
- 노래합성
- tacotron
- 한국어 음성 합성
- 윈도우
- 딥러닝
- 딥러닝 보코더
- korean tts
Archives
- Today
- Total
chldkato
백준 14502 연구소 (파이썬) 본문
https://www.acmicpc.net/problem/14502
벽을 세울 수 있는 공간에 벽 3개를 세우는 모든 경우에 대해서
각 경우마다 BFS로 바이러스를 퍼뜨린 후 안전영역을 구하면 되는 문제
import sys
import copy
from collections import deque
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
ans = 0
def bfs():
global ans
w = copy.deepcopy(a)
for i in range(n):
for j in range(m):
if w[i][j] == 2:
q.append([i, j])
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 w[nx][ny] == 0:
w[nx][ny] = 2
q.append([nx, ny])
cnt = 0
for i in w:
cnt += i.count(0)
ans = max(ans, cnt)
def wall(x):
if x == 3:
bfs()
return
for i in range(n):
for j in range(m):
if a[i][j] == 0:
a[i][j] = 1
wall(x+1)
a[i][j] = 0
n, m = map(int, sys.stdin.readline().split())
a = [list(map(int, sys.stdin.readline().split())) for _ in range(n)]
q = deque()
wall(0)
print(ans)
'백준' 카테고리의 다른 글
백준 2468 안전 영역 (파이썬) (0) | 2020.02.16 |
---|---|
백준 2583 영역 구하기 (파이썬) (0) | 2020.02.16 |
백준 6603 로또 (파이썬) (3) | 2020.02.16 |
백준 7562 나이트의 이동 (파이썬) (0) | 2020.02.16 |
백준 7569 토마토 (파이썬) (0) | 2020.02.16 |
Comments