-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathapsp.go
150 lines (133 loc) · 4.01 KB
/
apsp.go
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package graph
import (
"math"
)
func floydWarShall(g weightedGraph, init func(weightedGraph) ([][][]int, []interface{}), handler func(*[][][]int, int, int, int),
rebuild func([]interface{}, [][]int)) {
array, vertices := init(g)
for k := range array[:len(array)-1] {
for i := range array[k] {
for j := range array[k][i] {
handler(&array, k, i, j)
}
}
}
rebuild(vertices, array[len(array)-1])
}
func distFloydInit(g weightedGraph) ([][][]int, []interface{}) {
vertices := g.AllVertices()
array := make([][][]int, len(vertices)+1, len(vertices)+1)
for k := range array {
array[k] = make([][]int, len(vertices), len(vertices))
for i := range array[k] {
array[k][i] = make([]int, len(vertices), len(vertices))
if k == 0 {
for j := range array[k][i] {
currentEdge := edge{vertices[i], vertices[j]}
if i == j {
array[k][i][j] = 0
} else if !g.CheckEdge(currentEdge) {
array[k][i][j] = math.MaxInt32
} else {
array[k][i][j] = g.Weight(currentEdge)
}
}
}
}
}
return array, vertices
}
func distFloydHandler(array *[][][]int, k, i, j int) {
(*array)[k+1][i][j] = (*array)[k][i][j]
if (*array)[k][i][k]+(*array)[k][k][j] < (*array)[k+1][i][j] {
(*array)[k+1][i][j] = (*array)[k][i][k] + (*array)[k][k][j]
}
}
func distFloydWarShall(g weightedGraph) weightedGraph {
newG := newWeightedGraph()
rebuild := func(vertices []interface{}, array [][]int) {
for i := range vertices {
for j := range vertices {
if array[i][j] < math.MaxInt32 {
newG.AddEdgeWithWeight(edge{vertices[i], vertices[j]}, array[i][j])
}
}
}
}
floydWarShall(g, distFloydInit, distFloydHandler, rebuild)
return newG
}
func pathFloydWarShall(g weightedGraph) map[interface{}]weightedGraph {
var pathArray [][]int
var pathForest map[interface{}]weightedGraph
init := func(g weightedGraph) ([][][]int, []interface{}) {
distArray, vertices := distFloydInit(g)
pathArray = make([][]int, len(vertices), len(vertices))
for i := range pathArray {
pathArray[i] = make([]int, len(vertices), len(vertices))
for j := range pathArray[i] {
currentEdge := edge{vertices[i], vertices[j]}
if i == j || !g.CheckEdge(currentEdge) {
pathArray[i][j] = math.MaxInt32
} else {
pathArray[i][j] = i
}
}
}
return distArray, vertices
}
handler := func(array *[][][]int, k, i, j int) {
if (*array)[k][i][j] > (*array)[k][k][j]+(*array)[k][i][k] {
//if j != k and i->j > i->k + k->j, j should be from k
pathArray[i][j] = pathArray[k][j]
}
distFloydHandler(array, k, i, j)
}
rebuild := func(vertices []interface{}, array [][]int) {
pathForest = make(map[interface{}]weightedGraph)
for i := range vertices {
pathForest[vertices[i]] = newWeightedGraph()
for j := range vertices {
if pathArray[i][j] < math.MaxInt32 {
//pathArray[i][j] -> j
currentEdge := edge{vertices[pathArray[i][j]], vertices[j]}
pathForest[vertices[i]].AddEdgeWithWeight(currentEdge, g.Weight(currentEdge))
}
}
}
}
floydWarShall(g, init, handler, rebuild)
return pathForest
}
func johnson(g weightedGraph) weightedGraph {
tempG := newWeightedGraph()
s := struct{}{}
//add e{s,v}, weight is 0
for _, e := range g.AllEdges() {
tempG.AddEdgeWithWeight(e, g.Weight(e))
tempG.AddEdgeWithWeight(edge{s, e.Start}, 0)
}
relax := new(defaultRelax)
//compute dist, check neg loop and transform weight : w_hat = w + d(start) - d(end)
spfaE := spfaCore(tempG, s, relax)
for _, e := range tempG.AllEdges() {
if spfaE == nil || relax.Compare(spfaE[e.Start], spfaE[e.End], tempG.Weight(e)) {
return nil
}
tempG.AddEdgeWithWeight(e, tempG.Weight(e)+spfaE[e.Start].D-spfaE[e.End].D)
}
newG := newWeightedGraph()
//exclude dummy vertex s, and iterate vertices, recover distance
delete(spfaE, s)
for v := range spfaE {
dijkstraE := dijkstraCore(tempG, v, relax)
for u := range spfaE {
if v != u {
newG.AddEdgeWithWeight(edge{v, u}, dijkstraE[u].D+spfaE[u].D-spfaE[v].D)
} else {
newG.AddEdgeWithWeight(edge{v, u}, 0)
}
}
}
return newG
}