In the 5 by 5 matrix below, the minimal path sum from the top left to the bottom right, by only moving to the right and down, is indicated in bold red and is equal to 2427.
131 673 234 103 18
201 96 342 965 150
630 803 746 422 111
537 699 497 121 956
805 732 524 37 331
Find the minimal path sum, in matrix.txt (right click and 'Save Link/Target As...'), a 31K text file containing a 80 by 80 matrix, from the top left to the bottom right by only moving right and down.
Remark: I think they did mistake, when they mark the way http://projecteuler.net/problem=81
import numpy as np
matrix0 = [ map(int, row.split()) for row in open('matrix.txt')]
matrix=np.arange(6400).reshape(80,80)
for i in range(80):
for j in range(80):
matrix[i, j]=0
for i in range(80):
for j in range(80):
matrix[i, j]=matrix0[i][j]
sum=matrix[0,0]
k=0
n=0
while (k+n)<158:
for i in range(k, k+1):
for j in range(n, n+1):
if i!=79 and j!=79:
if matrix[i+1, j]<=matrix[i, j+1]:
sum=sum+matrix[i+1, j]
k=i+1
n=j
else:
sum+=matrix[i, j+1]
k=i
n=j+1
elif i==79:
sum+=matrix[i, j+1]
k=i
n=j+1
elif j==79:
sum+=matrix[i+1, j]
k=i+1
n=j
print sum
When I use this code for the matrix 5x5 like in problem it gives me correct answer. I can't understand why it doesn't work on bigger matrix?