-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
INF = int(1e9) # 무한을 의미하는 값으로 10억 설정 | ||
|
||
# 노드의 개수 및 간선의 개수를 입력 받기 | ||
n, m = map(int, input().split()) | ||
# 2차원 리스트(그래프 표현)를 만들고, 모든 값을 무한으로 초기화 | ||
graph = [[INF]*(n+1) for _ in range(n+1)] | ||
|
||
# 자기 자신에서 자기 자신으로 가는 비용은 0으로 초기화 | ||
for a in range(1, n+1): | ||
for b in range(1, n+1): | ||
if a==b: | ||
graph[a][b] = 0 | ||
|
||
# 각 간선에 대한 정보를 입력받아, 그 값으로 초기화 | ||
for _ in range(m): | ||
# A와 B가 서로에게 가는 비용은 1이라고 설정 | ||
a,b = map(int, input().split()) | ||
graph[a][b] = 1 | ||
graph[b][a] = 1 | ||
|
||
# 거쳐 갈 노드 X와 최종 목적지 노드 K를 입력받기 | ||
x, k = map(int, input().split()) | ||
|
||
# 점화식에 따라 폴로이드 워셜 알고리즘 수행 | ||
for k in range(1, n+1): | ||
for a in range(1, n+1): | ||
for b in range(1, n+1): | ||
graph[a][b] = min(graph[a][b], graph[a][k] + graph[k][b]) | ||
|
||
# 수행된 결과 출력 | ||
if graph[1][k] >= INF or graph[k][x] >= INF: | ||
print(-1) | ||
else: | ||
print(graph[1][k] + graph[k][x]) |
Empty file.