-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
58 lines (57 loc) · 769 Bytes
/
test.json
File metadata and controls
58 lines (57 loc) · 769 Bytes
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
{
"costPerMinute": 0.5,
"cities": [
{
"id": "city1",
"price": 40
},
{
"id": "city2",
"price": 10
},
{
"id": "city3",
"price": 30
},
{
"id": "city4",
"price": 5
}
],
"roads": [
{
"orig": "city1",
"dest": "city2",
"duration": 60,
"price": 20
},
{
"orig": "city1",
"dest": "city3",
"duration": 40,
"price": 10
},
{
"orig": "city3",
"dest": "city4",
"duration": 20,
"price": 5
},
{
"orig": "city2",
"dest": "city4",
"duration": 20,
"price": 5
}
],
"alliances": [
[
"city1",
"city2"
],
[
"city2",
"city4"
]
]
}