题解 | #矩阵的最小路径和#

矩阵的最小路径和

https://www.nowcoder.com/practice/7d21b6be4c6b429bb92d219341c4f8bb

using System;
using System.Collections.Generic;


class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param matrix int整型二维数组 the matrix
     * @return int整型
     */
    public int minPathSum(List<List<int>> matrix) {
        // write code here
        if (matrix == null)
            return 0;

        int nH = matrix.Count;
        int nL = matrix[0].Count;
        int[,] matrixR = new int[nH, nL];
        matrixR[0, 0] = matrix[0][0];
        for (int i = 1; i < nH; i++)
            matrixR[i, 0] = matrixR[i - 1, 0] + matrix[i][0];
        for (int j = 1; j < nL; j++)
            matrixR[0, j] = matrixR[0, j - 1] + matrix[0][j];
        for (int i = 1; i < nH; i++) {
            for (int j = 1; j < nL; j++) {
                matrixR[i, j] += matrix[i][j] + Math.Min(matrixR[i - 1, j], matrixR[i, j - 1]);
            }
        }

        return matrixR[nH - 1, nL - 1];
    }
}

全部评论

相关推荐

联通 技术人员 总包不低于12
点赞 评论 收藏
分享
昨天 14:22
门头沟学院 Java
大厂 测开 24*16离家近的事业编(大概只有大厂的1/4) 硕士
点赞 评论 收藏
分享
头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务