chldkato

백준 1012 유기농 배추 (파이썬) 본문

백준

백준 1012 유기농 배추 (파이썬)

chldkato 2020. 2. 27. 16:14

https://www.acmicpc.net/problem/1012

 

1012번: 유기농 배추

차세대 영농인 한나는 강원도 고랭지에서 유기농 배추를 재배하기로 하였다. 농약을 쓰지 않고 배추를 재배하려면 배추를 해충으로부터 보호하는 것이 중요하기 때문에, 한나는 해충 방지에 효과적인 배추흰지렁이를 구입하기로 결심한다. 이 지렁이는 배추근처에 서식하며 해충을 잡아 먹음으로써 배추를 보호한다. 특히, 어떤 배추에 배추흰지렁이가 한 마리라도 살고 있으면 이 지렁이는 인접한 다른 배추로 이동할 수 있어, 그 배추들 역시 해충으로부터 보호받을 수 있다. (

www.acmicpc.net

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

Comments