zoukankan      html  css  js  c++  java
  • LintCode: Minimum Path Sum

    C++,

    time: O(m*n)

    space: O(m*n)

     1 class Solution {
     2 public:
     3     /**
     4      * @param grid: a list of lists of integers.
     5      * @return: An integer, minimizes the sum of all numbers along its path
     6      */
     7     int minPathSum(vector<vector<int> > &grid) {
     8         // write your code here
     9         int m = grid.size(), n = grid[0].size();
    10         vector<vector<int> > dp(m, vector<int>(n));
    11         for (int i = 0; i < m; i++) {
    12             for (int j = 0; j < n; j++) {
    13                 if (i == 0) {
    14                     if (j == 0) {
    15                         dp[i][j] = grid[i][j];
    16                     } else {
    17                         dp[i][j] = dp[i][j-1] + grid[i][j];
    18                     }
    19                 } else if (j == 0) {
    20                     dp[i][j] = dp[i-1][j] + grid[i][j];
    21                 } else {
    22                     dp[i][j] = min(dp[i - 1][j], dp[i][j - 1]) + grid[i][j];
    23                 }
    24             }
    25         }
    26         return dp[m-1][n-1];
    27     }
    28 };

    C++,

    time: O(m*n)

    space: O(m)

     1 class Solution {
     2 public:
     3     /**
     4      * @param grid: a list of lists of integers.
     5      * @return: An integer, minimizes the sum of all numbers along its path
     6      */
     7     int minPathSum(vector<vector<int> > &grid) {
     8         // write your code here
     9         int m = grid.size(), n = grid[0].size();
    10         vector<int> dp(n);
    11         for (int i = 0; i < m; i++) {
    12             for (int j = 0; j < n; j++) {
    13                 if (i == 0) {
    14                     if (j == 0) {
    15                         dp[j] = grid[i][j];
    16                     } else {
    17                         dp[j] = dp[j-1] + grid[i][j];
    18                     }
    19                 } else if (j == 0) {
    20                     dp[j] = dp[j] + grid[i][j];
    21                 } else {
    22                     dp[j] = min(dp[j], dp[j - 1]) + grid[i][j];
    23                 }
    24             }
    25         }
    26         return dp[n-1];
    27     }
    28 };
  • 相关阅读:
    Java8 Optional使用方式
    ABAC框架-casbin
    Java数据脱敏(手机号|邮箱号|身份证号|银行卡号)
    使用OpenOffice将office文件转为pdf
    在线审批流设计
    Java 将带逗号的字符串转为List
    Java8 lambda常用操作
    Markdown合并单元格
    本博客已搬迁至rcst.xyz
    涂色(题解)
  • 原文地址:https://www.cnblogs.com/CheeseZH/p/5000605.html
Copyright © 2011-2022 走看看