-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilip.py
98 lines (90 loc) · 2.66 KB
/
filip.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
import collections
import os
from attributedict.collections import AttributeDict
def load(filename):
streets = {}
bs = []
es = []
ls = []
paths = []
with open(filename) as f:
D, I, S, V, F = map(int, f.readline().split())
in_streets = [[] for i in range(I)]
out_streets = [[] for i in range(I)]
for i in range(S):
B, E, name, L = f.readline().split()
B = int(B)
E = int(E)
L = int(L)
streets[name] = (B, E, L)
bs.append(B)
es.append(E)
ls.append(L)
in_streets[E].append(name)
out_streets[B].append(name)
for i in range(V):
l = f.readline().split()
P = int(l[0])
names = l[1:]
paths.append(names)
return AttributeDict({
'D': D,
'I': I,
'S': S,
'V': V,
'F': F,
'streets': streets,
'in_streets': in_streets,
'out_streets': out_streets,
'bs': bs,
'es': es,
'ls': ls,
'paths': paths
})
def save(schedule, f):
f.write(f'{len(schedule)}\n')
for i, streets in enumerate(schedule):
f.write(f'{i}\n')
f.write(f'{len(streets)}\n')
for name, t in streets:
f.write(f'{name} {t}\n')
def get_street_scores(ds):
street_visits = collections.Counter()
street_starts = collections.Counter()
for path in ds.paths:
# TODO: Weight by car quality.
street_starts[path[0]] += 1
for street in path:
street_visits[street] += 1
return street_visits, street_starts
def get_s(o):
if o == 0:
return 0
res = int(o / 10)
if res == 0:
res += 1
return res
for basename in 'abcdef':
print(basename)
data_set = load(os.path.join('data', f'{basename}.txt'))
street_visits, street_starts = get_street_scores(data_set)
#street_scores = {n: get_s(v) for n, v in street_visits.items()}
schedule = []
for names in data_set.in_streets:
#cur_starts = {n: street_starts[n] for n in names}
#cur_scores = {n: get_s(street_visits[n]) for n in names}
sched = []
for n in sorted(names, key=street_starts.__getitem__):
v = street_visits[n]
if v == 0:
continue
s = get_s(v)
assert s >= 1
sched.append((n, s))
if len(sched) == 0:
sched = [(names[0], 1)]
schedule.append(sched)
out_dir = 'solutions/filip'
os.makedirs(out_dir, exist_ok=True)
with open(os.path.join(out_dir, f'{basename}.txt'), 'w') as f:
save(schedule, f)