728x90
반응형
https://www.acmicpc.net/problem/11404
11404번: 플로이드
첫째 줄에 도시의 개수 n이 주어지고 둘째 줄에는 버스의 개수 m이 주어진다. 그리고 셋째 줄부터 m+2줄까지 다음과 같은 버스의 정보가 주어진다. 먼저 처음에는 그 버스의 출발 도시의 번호가
www.acmicpc.net
#include <iostream>
#include <vector>
#include <algorithm>
#define INF 98765421
using namespace std;
int n, m;
int graph[101][101];
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(i == j) graph[i][j] = 0;
else graph[i][j] = INF;
}
}
for(int i = 0; i < m; i++){
int from, to, dis;
cin >> from >> to >> dis;
graph[from][to] = min(graph[from][to], dis);
}
for(int k = 1; k <= n; k++){
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
graph[i][j] = min(graph[i][k] + graph[k][j], graph[i][j]);
}
}
}
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(graph[i][j] == INF) cout << 0 << " ";
else cout << graph[i][j] << " ";
}
cout << endl;
}
return 0;
}
시작 도시와 도착 도시를 연결하는 노선은 하나가 아닐 수 있다는 점 주의!!
728x90
반응형
'Algorithm > BAEKJOON' 카테고리의 다른 글
[BOJ] 1240번 노드사이의 거리 (C++) (0) | 2022.05.05 |
---|---|
[BOJ] 1719번 택배 (C++) (0) | 2022.05.05 |
[BOJ] 14938번 서강그라운드 (C++) (0) | 2022.05.04 |
[BOJ] 23843번 콘센트 (C++) (0) | 2022.05.01 |
[BOJ] 1700번 멀티탭 스케줄링 (C++) (0) | 2022.04.30 |