-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha57_f4_journey.py
70 lines (54 loc) · 920 Bytes
/
a57_f4_journey.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
import heapq,copy,sys,math
input = sys.stdin.readline
print = lambda s:sys.stdout.write(str(s)+"\n")
ans = 0
def DFS( G,maxE,V,v,n,sumW ):
global ans
if v==n-1 and sum(V)==n-1:
ans = max(ans,sumW)
V[v] = 0
return
elif v==n-1:
V[v] = 0
return
g = 0
for i in range(n):
if V[i]==0:
g += maxE[i]
if sumW + g < ans:
return
V[v] = 1
for i in range(n):
if i==v or V[i]==1:
continue
DFS( G,maxE,V,i,n,sumW + G[v][i] )
V[v] = 0
n = int(input())
G = [ ]
maxE = [0]*n
for i in range(n):
l = [int(j) for j in input().split()]
G.append(l)
maxE[i] = max(l)
#print(G)
#print(maxE)
V = [0]*n
DFS(G,maxE,V,0,n,0)
print(ans)
'''
4
0 1 -1 2
2 0 1 -3
1 15 0 13
3 -1 5 0
4
0 1 -1 2
2 0 1 -3
1 15 0 13
3 -1 5 0
4
0 1 -1 2
2 0 5 -3
1 15 0 3
3 -1 5 0
'''