-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmymap.py
108 lines (107 loc) · 2.1 KB
/
mymap.py
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
myMap = {
"Arad": {
"Zerind": { "cost": 75 },
"Timisoara": { "cost": 118 },
"Sibiu": { "cost": 140 }
},
"Zerind": {
"Oradea": { "cost": 71 },
"Arad": { "cost": 75 }
},
"Timisoara": {
"Lugoj": { "cost": 111 },
"Arad": { "cost": 118 }
},
"Sibiu": {
"Fagaras": { "cost": 99 },
"Rimnicu Vilcea": { "cost": 80 },
"Oradea": { "cost": 151 },
"Arad": { "cost": 140 }
},
"Oradea": {
"Sibiu": { "cost": 151 },
"Zerind": { "cost": 71 }
},
"Lugoj": {
"Mehadia": { "cost": 70 },
"Timisoara": { "cost": 111 }
},
"Fagaras": {
"Bucharest": { "cost": 211 },
"Sibiu": { "cost": 99 }
},
"Rimnicu Vilcea": {
"Pitesti": { "cost": 97 },
"Craiova": { "cost": 146 },
"Sibiu": { "cost": 99 }
},
"Mehadia": {
"Drobeta": { "cost": 75 },
"Lugoj": { "cost": 70 }
},
"Pitesti": {
"Bucharest": { "cost": 101 },
"Rimnicu Vilcea": { "cost": 97 },
"Craiova": { "cost": 138 }
},
"Craiova": {
"Pitesti": { "cost": 138 },
"Rimnicu Vilcea": { "cost": 146 },
"Drobeta": { "cost": 120 }
},
"Drobeta": {
"Craiova": { "cost": 120 },
"Mehadia": { "cost": 75 }
},
"Bucharest": {
"Fagaras": { "cost": 211 },
"Pitesti": { "cost": 101 },
"Giurgiu": { "cost": 90 },
"Urziceni": { "cost": 85 }
},
"Giurgiu": {
"Bucharest": { "cost": 90 }
},
"Urziceni": {
"Bucharest": { "cost": 85 },
"Hirsova": { "cost": 98 },
"Vaslui": { "cost": 142 }
},
"Hirsova": {
"Eforie": { "cost": 70 },
"Urziceni": { "cost": 98 }
},
"Vaslui": {
"Iasi": { "cost": 92 },
"Urziceni": { "cost": 142 }
},
"Iasi": {
"Neamt": { "cost": 87 },
"Vaslui": { "cost": 92 }
},
"Neamt": {
"Iasi": { "cost": 87 }
}
}
heuristic = {
"Arad": 366,
"Zerind": 374,
"Timisoara": 329,
"Sibiu": 253,
"Oradea": 380,
"Lugoj": 244,
"Fagaras": 178,
"Rimnicu Vilcea": 193,
"Mehadia": 241,
"Pitesti": 98,
"Craiova": 160,
"Drobeta": 242,
"Bucharest": 0,
"Giurgiu": 77,
"Urziceni": 80,
"Hirsova": 151,
"Eforie": 161,
"Vaslui": 199,
"Iasi": 226,
"Neamt": 234
}