BOJ1743 python 그래프 S1

randi65535·2020년 11월 3일
0

전형적인 그래프 탐색 문제이다. 음식물 쓰레기 위치만 잘 표시해주면 쉽게 맞출 수 있는 문제이다.

from collections import deque

N, M, K = map(int, input().split())
board = [[False for _ in range(M+1)] for _ in range(N+1)]
check = [[False for _ in range(M+1)] for _ in range(N+1)]

for _ in range(K):
	i, j = map(int, input().split())
	board[i][j] = True
	# print(i, j)

dx = [0,0,-1,1]
dy = [-1,1,0,0]

def bfs(a, b):
	
	Q = deque()
	Q.append((a, b))
	check[a][b] = True

	cnt = 0
	while Q:
		x, y = Q.popleft()
		cnt += 1
		for i in range(4):
			nx = x + dx[i]
			ny = y + dy[i]

			if 1 <= nx <= N and 1 <= ny <= M:
				if board[nx][ny] and not check[nx][ny]:
					Q.append((nx, ny))
					check[nx][ny] = True
	return cnt

mx = 0
for i in range(1, len(board)):
	for j in range(1, len(board[i])):
		if board[i][j] and not check[i][j]:
			mx = max(mx, bfs(i, j))

print(mx)
profile
unsinged int 8byte-1

0개의 댓글

관련 채용 정보