-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathall_pair_shortest_path_binary_exponentation.cpp
76 lines (70 loc) · 1.67 KB
/
all_pair_shortest_path_binary_exponentation.cpp
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* Description: All pair shortest paths (Returns a matrix A where A[i][j] is the M-length shortest path from vertex i to vertex j)
* Usage: getShortestPath O(N^3 log M)
* Source: https://github.com/dragonslayerx
*/
#include <iostream>
#include <cstdio>
using namespace std;
const int MAX = 100;
const int INF = 1e9;
void multiply(int A[][MAX], int B[][MAX], int n) {
int C[MAX][MAX];
for(int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
C[i][j] =INF;
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
for (int k = 0; k < n; k++) {
if (A[i][k] != INF && B[k][j] != INF) {
C[i][j] = min(C[i][j], A[i][k] + B[k][j]);
}
}
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
A[i][j] = C[i][j];
}
}
}
void getShortestPath(int A[][MAX], int B[][MAX], const int n, int m) {
if (m == 1)return;
getShortestPath(A, B, n, m/2);
multiply(A, A, n);
if (m & 1) multiply(A, B, n);
}
int main() {
int N;
scanf("%d", &N);
int Adj[MAX][MAX];
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
Adj[i][j]=INF;
}
Adj[i][i] = 0;
}
int countEdges;
scanf("%d", &countEdges);
for (int i = 0; i < countEdges; i++) {
int u, v, w;
scanf("%d%d%d", &u, &v, &w);
u--, v--;
Adj[u][v] = Adj[v][u] = w;
}
int Dist[MAX][MAX];
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
Dist[i][j]=Adj[i][j];
}
}
getShortestPath(Dist, Adj, N, N);
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
printf("%5d", Dist[i][j]);
}
printf("\n");
}
}