[알고리즘/백준] 1743번 : 음식물 피하기(python)
간단한 bfs, dfs 문제이다
dfs
def dfs(x, y):
a[x][y] = 0
w = 1
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
q = list()
q.append([x, y])
while q:
x, y = q.pop()
for i in range(4):
nx = dx[i] + x
ny = dy[i] + y
if 0 <= nx < N and 0 <= ny < M:
if a[nx][ny] == 1:
w += 1
a[nx][ny] = 0
q.append([nx, ny])
return w
N, M, K = map(int, input().split())
a = [[0] * M for _ in range(N)]
for i in range(K):
x, y = map(int ,input().split())
a[x - 1][y - 1] = 1
cnt = 0
for i in range(N):
for j in range(M):
if a[i][j] == 1:
cnt = max(cnt, dfs(i, j))
print(cnt)
bfs
from collections import deque
def bfs(x, y):
a[x][y] = 0
w = 1
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
q = deque()
q.append([x, y])
while q:
x, y = q.popleft()
for i in range(4):
nx = dx[i] + x
ny = dy[i] + y
if 0 <= nx < N and 0 <= ny < M:
if a[nx][ny] == 1:
w += 1
a[nx][ny] = 0
q.append([nx, ny])
return w
N, M, K = map(int, input().split())
a = [[0] * M for _ in range(N)]
for i in range(K):
x, y = map(int ,input().split())
a[x - 1][y - 1] = 1
cnt = 0
for i in range(N):
for j in range(M):
if a[i][j] == 1:
cnt = max(cnt, bfs(i, j))
print(cnt)
Author And Source
이 문제에 관하여([알고리즘/백준] 1743번 : 음식물 피하기(python)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@y7y1h13/알고리즘백준-1743번-음식물-피하기python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)