import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int h = sc.nextInt() - 2; int w = sc.nextInt(); int[][] fields = new int[h][w]; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { fields[i][j] = sc.nextInt(); } } PriorityQueue queue = new PriorityQueue<>(); for (int i = 0; i < h; i++) { queue.add(new Path(i, 0, 0)); } int[][] costs = new int[h][w]; for (int[] arr : costs) { Arrays.fill(arr, Integer.MAX_VALUE); } while (queue.size() > 0) { Path p = queue.poll(); p.value += fields[p.r][p.c]; if (costs[p.r][p.c] <= p.value || fields[p.r][p.c] == -1) { continue; } costs[p.r][p.c] = p.value; for (int i = Math.max(0, p.r - 1); i <= p.r + 1 && i < h; i++) { for (int j = Math.max(0, p.c - 1); j <= p.c + 1 && j < w; j++) { if (costs[i][j] == Integer.MAX_VALUE) { queue.add(new Path(i, j, p.value)); } } } } int ans = Integer.MAX_VALUE; for (int[] arr : costs) { ans = Math.min(ans, arr[w - 1]); } if (ans == Integer.MAX_VALUE) { System.out.println(-1); } else { System.out.println(ans); } } static class Path implements Comparable { int r; int c; int value; public Path(int r, int c, int value) { this.r = r; this.c = c; this.value = value; } public int compareTo(Path another) { return value - another.value; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }