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
- you only look once
- YOLO
- Vocoder
- 딥러닝 음성 합성
- 한국어 음성 합성
- 학습
- 딥러닝
- 노래합성
- melgan
- korean tts
- DCTTS
- text-to-speech
- 한국어 tts
- 딥러닝 보코더
- tacotron
- singing voice synthesis
- TTS
- 윈도우
- waveglow
- 트레이닝
- 타코트론
- deep voice
- 음성 합성
- 보코더
Archives
- Today
- Total
chldkato
백준 2667 단지번호붙이기 (파이썬) 본문
https://www.acmicpc.net/problem/2667
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y, cnt):
q = [[x, y]]
check[x][y] = cnt
while q:
x = q[0][0]
y = q[0][1]
q.pop(0)
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n:
if a[nx][ny] == 1 and check[nx][ny] == 0:
check[nx][ny] = cnt
q.append([nx, ny])
n = int(input())
a = [list(map(int, input())) for _ in range(n)]
check = [[0]*n for _ in range(n)]
cnt = 1
for i in range(n):
for j in range(n):
if a[i][j] == 1 and check[i][j] == 0:
bfs(i, j, cnt)
cnt += 1
count = [0 for _ in range(cnt)]
for i in range(n):
for j in range(n):
if check[i][j] != 0:
count[check[i][j]] += 1
count = count[1:]
count.sort()
cnt -= 1
print(cnt)
for i in range(cnt):
print(count[i])
'백준' 카테고리의 다른 글
백준 1697 숨바꼭질 (파이썬) (0) | 2020.02.27 |
---|---|
백준 7576 토마토 (파이썬) (0) | 2020.02.27 |
백준 2178 미로 탐색 (파이썬) (0) | 2020.02.27 |
백준 2931 가스관 (파이썬) (2) | 2020.02.26 |
백준 2151 거울 설치 (파이썬) (0) | 2020.02.25 |
Comments