본문 바로가기
코딩 테스트/문제 풀기

[프로그래머스] 가장 먼 노드

by hazel_ 2021. 4. 28.

programmers.co.kr/learn/courses/30/lessons/49189

 

코딩테스트 연습 - 가장 먼 노드

6 [[3, 6], [4, 3], [3, 2], [1, 3], [1, 2], [2, 4], [5, 2]] 3

programmers.co.kr

 

from collections import deque

def solution(n, edges):
    visited=[False]*(n+1)
    answer=[int(1e9)]*(n+1)
    info=[[] for _ in range(n+1)]
    for edge in edges:
        info[edge[0]].append(edge[1])
        info[edge[1]].append(edge[0])

    def bfs(v):
        q=deque()
        count=1
        visited[v]=True
        answer[v]=0
        for a in info[v]:
            q.append((a,count))

        while q:
            a,cnt=q.popleft()
            if visited[a]==True:
                continue
            else:
                visited[a]=True
                answer[a]=min(answer[a],cnt)
                for i in info[a]:
                    q.append((i,cnt+1))


    bfs(1)
    max_v=max(answer[1:])
    max_count=answer.count(max_v)

    return max_count

댓글