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
- DCTTS
- korean tts
- 윈도우
- 음성 합성
- 딥러닝
- 딥러닝 음성 합성
- 보코더
- you only look once
- Vocoder
- tacotron
- 딥러닝 보코더
- singing voice synthesis
- melgan
- text-to-speech
- 한국어 음성 합성
- deep voice
- 한국어 tts
- 트레이닝
- waveglow
- YOLO
- 학습
- 노래합성
- 타코트론
- TTS
Archives
- Today
- Total
chldkato
백준 1012 유기농 배추 (파이썬) 본문
https://www.acmicpc.net/problem/1012
from collections import deque
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def bfs(x, y, cnt):
q.append([x, y])
c[x][y] = cnt
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 a[nx][ny] == 1 and c[nx][ny] == 0:
q.append([nx, ny])
c[nx][ny] = cnt
tc = int(input())
while tc > 0:
m, n, k = map(int, input().split())
a = [[0]*m for _ in range(n)]
c = [[0]*m for _ in range(n)]
q = deque()
for _ in range(k):
x, y = map(int, input().split())
a[y][x] = 1
cnt = 1
for i in range(n):
for j in range(m):
if a[i][j] == 1 and c[i][j] == 0:
bfs(i, j, cnt)
cnt += 1
print(cnt-1)
tc -= 1
'백준' 카테고리의 다른 글
백준 11724 연결 요소의 개수 (파이썬) (0) | 2020.02.27 |
---|---|
백준 11403 경로 찾기 (파이썬) (0) | 2020.02.27 |
백준 1697 숨바꼭질 (파이썬) (0) | 2020.02.27 |
백준 7576 토마토 (파이썬) (0) | 2020.02.27 |
백준 2667 단지번호붙이기 (파이썬) (0) | 2020.02.27 |
Comments