컴공생의 다이어리
[프로그래머스] 전력망을 둘로 나누기 - 파이썬(Python) 본문
[프로그래머스] 전력망을 둘로 나누기 - 파이썬(Python)
from collections import defaultdict, deque
def bfs_and_node_count(del_line, n, wire_dict): # bfs 수행과 연결된 노드수 구하기
count = 1 # 연결된 노드 수
visited = [False] * (n + 1) # 방문여부 체크
visited[del_line[0]] = True # 시작 노드 방문 처리
queue = deque([del_line[0]])
while queue: # bfs 수행
curr = queue.popleft()
for i in wire_dict[curr]: # curr 노드와 연결된 노드에 대해서
if visited[i] or i == del_line[1]: # 방문했거나 끊어지는 부분의 노드인 경우 패스
continue
count += 1
queue.append(i)
visited[i] = True
return count
def solution(n, wires):
answer = 1000
data = defaultdict(set) # 각 노드별 연결된 노드 정보
for a, b in wires:
data[a].add(b)
data[b].add(a)
for w in wires:
# 해당 와이어를 끊었을 때 한쪽 영역의 노드 수 구하기
temp = bfs_and_node_count(w, n, data)
# 기존 answer와 현재 해당하는 와이어를 끊었을 때 노드 차이 비교해서 최솟값으로 업데이트
answer = min(answer, abs(n - temp - temp))
return answer
https://programmers.co.kr/learn/courses/30/lessons/86971
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 예상 대진표 - 파이썬(Python) (0) | 2022.07.04 |
---|---|
[프로그래머스] 폰켓몬 - 파이썬(Python) (0) | 2022.07.03 |
[프로그래머스] 피로도 - 파이썬(Python) (0) | 2022.07.02 |
[파이썬, Python] 백준 12761번 : 돌다리 (0) | 2022.07.01 |
[프로그래머스] 스킬트리 - 파이썬(Python) (0) | 2022.06.30 |
Comments