-
Notifications
You must be signed in to change notification settings - Fork 0
/
HeldKarp.go
141 lines (103 loc) · 3.78 KB
/
HeldKarp.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
package main
import (
"time"
)
func HeldKarpByCost(start *Vertex, vertices VertexSet, v Vertex, path *[]Vertex, cost *float64,
currentPath []Vertex, currentCost float64, tickets *Tickets, currentTickets Tickets) float64 {
if vertices.size() == 1 && vertices.has(&v) {
ticket := start.getTicketByPrice(v.stationID)
currentTickets = append(currentTickets, *ticket)
currentPath = append(currentPath, *start)
currentCost += ticket.price
if *cost >= currentCost {
*path = currentPath
*cost = currentCost
*tickets = currentTickets
}
return ticket.price
}
vertices.remove(&v)
otherVertices := vertices.getList()
minCost := FakeHugeCost
localCost := FakeHugeCost
for _, currentVertex := range otherVertices {
tempSet := *NewVertexSet().union(&vertices)
ticket := currentVertex.getTicketByPrice(v.stationID)
currentAdjacentCost := ticket.price
if currentAdjacentCost == FakeHugeCost {
continue
}
currentPath = append(currentPath, *currentVertex)
currentTickets = append(currentTickets, *ticket)
currentCost += currentAdjacentCost
currentHeldKarp := HeldKarpByCost(start, tempSet, *currentVertex, path, cost, currentPath, currentCost, tickets, currentTickets)
if currentHeldKarp == FakeHugeCost {
currentPath = currentPath[:len(currentPath)-1]
currentTickets = currentTickets[:len(currentTickets)-1]
currentCost -= currentAdjacentCost
continue
}
localCost = currentHeldKarp + currentAdjacentCost
if minCost == FakeHugeCost || minCost > localCost {
minCost = localCost
}
currentPath = currentPath[:len(currentPath)-1]
currentTickets = currentTickets[:len(currentTickets)-1]
currentCost -= currentAdjacentCost
}
return minCost
}
func HeldKarpByDuration(start *Vertex, currentTime time.Time, vertices VertexSet, v Vertex, paths *[][]Vertex, optimalDuration *time.Duration,
currentPath []Vertex, currentDuration time.Duration, tickets *[]Tickets, currentTickets Tickets) time.Duration {
if vertices.size() == 1 && vertices.has(&v) {
ticket, duration := start.getTicketByDuration(v.stationID, currentTime)
currentTickets = append(currentTickets, *ticket)
currentPath = append(currentPath, *start)
currentTime = ticket.arrival
currentDuration += duration
if *optimalDuration > currentDuration {
*tickets = make([]Tickets, 0)
*paths = make([][]Vertex, 0)
*optimalDuration = currentDuration
}
if *optimalDuration >= currentDuration {
*tickets = append(*tickets, currentTickets)
*paths = append(*paths, currentPath)
}
return duration
}
vertices.remove(&v)
otherVertices := vertices.getList()
localDuration := FakeTravelDuration
minDuration := FakeTravelDuration
for _, currentVertex := range otherVertices {
previousTime := currentTime
tempSet := *NewVertexSet().union(&vertices)
ticket, duration := currentVertex.getTicketByDuration(v.stationID, currentTime)
if duration == FakeTravelDuration {
continue
}
currentPath = append(currentPath, *currentVertex)
currentTickets = append(currentTickets, *ticket)
currentDuration += duration
currentTime = ticket.arrival
currentHeldKarp := HeldKarpByDuration(start, currentTime, tempSet, *currentVertex, paths, optimalDuration,
currentPath, currentDuration, tickets, currentTickets)
if currentHeldKarp == FakeTravelDuration {
currentPath = currentPath[:len(currentPath)-1]
currentTickets = currentTickets[:len(currentTickets)-1]
currentDuration -= duration
currentTime = previousTime
continue
}
localDuration = currentHeldKarp + duration
if minDuration == FakeTravelDuration || minDuration > localDuration {
minDuration = localDuration
}
currentPath = currentPath[:len(currentPath)-1]
currentTickets = currentTickets[:len(currentTickets)-1]
currentDuration -= duration
currentTime = previousTime
}
return minDuration
}