Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- DFS: Connected Cell in a Grid
- BFS: Shortest Reach in a Graph
- candies
- 구슬탈출2
- python
- 프로그래머스
- Max Array Sum
- 격파르타 장점
- Common Child
- Roads and Libraries
- Interview Preparation Kit
- Special String Again
- programmers
- [sqld]자격증합격
- Find the nearest clone
- Algorithm
- 격파르타 합격후기
- 매칭점수
- 알고리즘
- Recursion: Davis' Staircase
- 파이썬
- Reverse Shuffle Merge
- 격파르타 후기
- 해커랭크
- 머신러닝
- hackerrank
- 야근지수
- 코딩테스트
- 백준
- 피보나치 함수
Archives
- Today
- Total
Archive
[Hackerrank] [Medium] Find the nearest clone 본문
https://www.hackerrank.com/challenges/find-the-nearest-clone/problem
풀이
- 그래프 정보와 각 노드의 색깔 저보가 주어짐. 특정 색깔을 입력받았을 때 같은 색깔의 다른 노드에 도달할 수 있는 최단 거리를 구하는 문제
- 먼저 adj_matrix를 만들어주는데, 파이썬의 dictionary를 사용.
- key : node, value : [인접 노드]
- 방향이 없기 때문에 graph_from, graph_to에 있는 노드를 번갈아가며 append해줌.
- 만약 같은 색깔의 노드 개수가 2보다 작으면 -1 리턴. 검사하면서 색깔 정보를 기준으로 start_node를 구함.
- start_node에 대해 BFS수행하며 최단거리를 계산해줌.
def findShortest(graph_nodes, graph_from, graph_to, colors, target_color):
from collections import defaultdict
from collections import deque
adj_dict = defaultdict(list)
color_dict = {}
# adj_matrix 만들어줌.
for idx in range(len(graph_from)):
start_ = graph_from[idx]
end_ = graph_to[idx]
adj_dict[start_].append(end_)
adj_dict[end_].append(start_)
for idx, val in enumerate(colors):
color_dict[idx+1] = val
cnt = 0
start_node = []
for key, val in color_dict.items():
if target_color == val:
cnt += 1
start_node.append(key)
# 같은 색깔 노드 개수가 2보다 작으면 -1 리턴
if cnt < 2:
return -1
answer = []
depth = {}
# 모든 시작 노드에 대해 BFS수행 -> 같은 색깔 node와의 거리 구함.
for start in start_node:
queue = deque([start])
depth[start] = 0
visited = [0] * (len(colors)+1)
visited[start] = 1
while queue:
node = queue.popleft()
for adj_node in adj_dict[node]:
if visited[adj_node] : continue
if colors[adj_node-1] == target_color:
answer.append(depth[node] + 1)
if visited[adj_node] != 1:
visited[adj_node] = 1
queue.append(adj_node)
depth[adj_node] = depth[node] + 1
# answer 중 최솟값을 return, 비어있으면 -1
return min(answer) if answer != [] else -1
'공부 > Algorithm' 카테고리의 다른 글
[BOJ] 9093. 단어 뒤집기 (0) | 2021.01.16 |
---|---|
[Programmers] [Level3] 매칭 점수 (0) | 2020.09.10 |
[Hackerrank] [Medium] Roads and Libraries (0) | 2020.09.02 |
[programmers] [Level3] 야근지수 (0) | 2020.09.01 |
[Hackerrank] [Medium] Recursion: Davis' Staircase (0) | 2020.09.01 |
Comments