update 107
This commit is contained in:
parent
30aba93f05
commit
cc02735d36
@ -1,45 +1,31 @@
|
|||||||
ff = open('../network.txt', 'r')
|
|
||||||
nnn = ff.readlines()
|
|
||||||
ff.close()
|
|
||||||
|
|
||||||
inf = 10 ** 10
|
def get_file(fn):
|
||||||
|
with open(fn, 'r') as f:
|
||||||
|
network = list(map(lambda x: list(map(lambda n: int(n),
|
||||||
|
x.strip().replace('-', '0').split(','))), f.readlines()))
|
||||||
|
return network, sum(map(lambda x: sum(x), network)) // 2
|
||||||
|
|
||||||
def stolis(s):
|
def remake(network, total):
|
||||||
mid = s.split(',')
|
p_todo = list(range(1, len(network)))
|
||||||
out = []
|
p_tree = [0]
|
||||||
for i in mid:
|
trace = []
|
||||||
if i.isdigit():
|
while len(p_todo):
|
||||||
out.append(int(i))
|
least = (total, 0)
|
||||||
else:
|
for pick in p_todo:
|
||||||
out.append(inf)
|
for in_tree in p_tree:
|
||||||
return out
|
dist = network[pick][in_tree]
|
||||||
|
if not dist:
|
||||||
|
continue
|
||||||
|
if dist < least[0]:
|
||||||
|
least = (dist, pick)
|
||||||
|
if least[0] < total:
|
||||||
|
trace.append(least[0])
|
||||||
|
p_tree.append(least[1])
|
||||||
|
p_todo.remove(least[1])
|
||||||
|
return sum(trace)
|
||||||
|
|
||||||
hole = 0
|
def calc(fn):
|
||||||
net = []
|
network, total = get_file(fn)
|
||||||
for i in nnn:
|
return total - remake(network, total)
|
||||||
tmp = stolis(i.strip())
|
|
||||||
for j in tmp:
|
|
||||||
if j < inf:
|
|
||||||
hole += j
|
|
||||||
net.append(tmp)
|
|
||||||
|
|
||||||
#print net
|
print(calc('../resource/network.txt'))
|
||||||
|
|
||||||
have = [0]
|
|
||||||
nothave = range(1, len(net))
|
|
||||||
|
|
||||||
total = 0
|
|
||||||
while len(nothave) > 0:
|
|
||||||
choose = [inf, 0]
|
|
||||||
node = 0
|
|
||||||
it = 0
|
|
||||||
for node in nothave:
|
|
||||||
for it in have:
|
|
||||||
if net[node][it] < choose[0]:
|
|
||||||
choose = [net[node][it], node]
|
|
||||||
if choose[0] < inf:
|
|
||||||
have.append(choose[1])
|
|
||||||
nothave.remove(choose[1])
|
|
||||||
total += choose[0]
|
|
||||||
|
|
||||||
print hole / 2 - total
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user