공부하고 기록하는, 경제학과 출신 개발자의 노트

프로그래밍/코딩테스트 문제풀이

[Python] Hackerrank. Find the Nearest Clone (Medium)

inspirit941 2020. 3. 9. 13:35
반응형

https://www.hackerrank.com/challenges/find-the-nearest-clone/problem

 

Find the nearest clone | HackerRank

Find the shortest path length between any two nodes with the given condition.

www.hackerrank.com

 

constraint 값이 꽤 커 보여서, 2D Array로 그래프를 구성하는 대신 defaultdict를 사용했다.

bfs로 그래프를 순회하면서, 시작점의 color와 순회지점의 color가 일치하는 지점에서 순회 횟수를 반환하면 된다.

 

 

반응형