Baekjoon 11404 (플로이드)

Baekjoon 11404 (플로이드)

Baekjoon 11404, 백준 11404 문제의 본인 풀이입니다!
문제는 아래의 링크에서 확인할 수 있습니다.
문제보기

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <cstdio>
#include <algorithm>
#define INF 999999999

using namespace std;

int n, m;
int dp[102][102]; // initial: dp[from][to] = value

void Floyd_Warshall() {
// consider passing node 'temp'
for(int temp = 1; temp <= n; temp++){
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(dp[i][temp] != INF && dp[temp][j] != INF){
dp[i][j] = min(dp[i][j], dp[i][temp] + dp[temp][j]);
}
}
}
}
}

int main() {

// put inputs & initalization
scanf("%d", &n);
scanf("%d", &m);

for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
dp[i][j] = INF;
}
}

while(m--){
int a, b, c;
scanf("%d %d %d", &a, &b, &c);

if(dp[a][b] > c)
dp[a][b] = c;
}

// Solution by Floyd-Warshall Algorithm
Floyd_Warshall();

for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(dp[i][j] == INF || i == j) printf("0 ");
else printf("%d ", dp[i][j]);
}

printf("\n");
}
}

플로이드 워셜 알고리즘 (Floyd-Warshall Algorithm) 의 기본적인 구현이다!

알고리즘에 대한 이론은 여기에서 확인할 수 있다.

Author

Yeonsang Shin

Posted on

2020-09-20

Updated on

2022-12-19

Licensed under

Comments