[백준 11404번 C/C++] 플로이드
[백준 11404번 C/C++] 플로이드
https://www.acmicpc.net/problem/11404
해결전략
플로이드 워셜 Floyd-Warshall Algorithm
코드
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int n, m;
vector<vector<int>>dist;
const int INF = 2147000000 / 2;//최댓값 설정
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> n >> m;
dist.resize(n+1, vector<int>(n+1, INF));//기본값을 최댓값
int a, b, c;
for (int i = 0; i < m; i++) {
cin >> a >> b >> c;
if(dist[a][b] > c)
dist[a][b] = c;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (i == j)
dist[i][j] = 0;
}
}
for (int k = 1; k <= n; k++)
{
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= n; j++)
dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
}
}
for (int start = 1; start <= n; start++)
{
for (int end = 1; end <= n; end++)
{
//값이 최댓값이라는건 바뀐적이 없다는 의미(=길이 없다는 의미)
if (dist[start][end] == INF)
cout << "0" << " ";
else
cout << dist[start][end] << " ";
}
cout << "\n";
}
return 0;
}
'⭐ 코딩테스트 > 백준' 카테고리의 다른 글
[백준 13305번 C/C++] 주유소 (0) | 2023.07.28 |
---|---|
[백준 16234번 C/C++] 인구 이동 (0) | 2023.07.26 |
[백준 2293번 C/C++] 동전 1 (0) | 2023.07.24 |
[백준 2447번 C/C++] 별 찍기 (0) | 2023.07.21 |
[백준 18405번 C/C++] 경쟁적 전염 (0) | 2023.07.19 |
댓글
이 글 공유하기
다른 글
-
[백준 13305번 C/C++] 주유소
[백준 13305번 C/C++] 주유소
2023.07.28 -
[백준 16234번 C/C++] 인구 이동
[백준 16234번 C/C++] 인구 이동
2023.07.26 -
[백준 2293번 C/C++] 동전 1
[백준 2293번 C/C++] 동전 1
2023.07.24 -
[백준 2447번 C/C++] 별 찍기
[백준 2447번 C/C++] 별 찍기
2023.07.21